diff options
Diffstat (limited to '')
-rw-r--r-- | tests/functional/version/scrypt.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/functional/version/scrypt.go b/tests/functional/version/scrypt.go new file mode 100644 index 0000000..5133f8c --- /dev/null +++ b/tests/functional/version/scrypt.go @@ -0,0 +1,13 @@ +package scrypt + +import ( + g "gobang" +) + + + +func MainTest() { + g.Testing("we can get the lib version", func() { + g.TAssertEqual(len(Version) >= 5, true) + }) +} |