14 lines
205 B
Go
Raw Normal View History

2023-07-05 15:23:50 +00:00
package ocean_test
import (
"testing"
"git.akyoto.dev/go/assert"
"git.akyoto.dev/go/ocean"
)
func TestNewNamespace(t *testing.T) {
ns := ocean.NewNamespace("test")
assert.Equal(t, ns.Count(), 0)
}