diff --git a/pkg/core/native/name_service_test.go b/pkg/core/native/name_service_test.go index 978f294b3..c8fccf0e7 100644 --- a/pkg/core/native/name_service_test.go +++ b/pkg/core/native/name_service_test.go @@ -3,6 +3,8 @@ package native import ( "testing" + "github.com/nspcc-dev/neo-go/pkg/smartcontract/manifest" + "github.com/nspcc-dev/neo-go/pkg/smartcontract/manifest/standard" "github.com/stretchr/testify/require" ) @@ -86,3 +88,8 @@ func TestNameService_CheckName(t *testing.T) { } } } + +func TestNameService_NEP11(t *testing.T) { + ns := newNameService() + require.NoError(t, standard.Check(&ns.Manifest, manifest.NEP11StandardName)) +}