Files
wazero/internal/syscallfs/emptyfs_test.go
Crypt Keeper 3cf29f9f76 fs: adds string for better error experience (#1042)
This prepares for pseudo-root when the CLI doesn't provide one by
improving the error messages in general, as well being consistent about
parameter order.

Signed-off-by: Adrian Cole <adrian@tetrate.io>

Signed-off-by: Adrian Cole <adrian@tetrate.io>
2023-01-17 10:01:51 -06:00

12 lines
193 B
Go

package syscallfs
import (
"testing"
"github.com/tetratelabs/wazero/internal/testing/require"
)
func TestEmptyFS_String(t *testing.T) {
require.Equal(t, "empty:/:ro", EmptyFS.String())
}