diff options
Diffstat (limited to 'tests/functional')
l--------- | tests/functional/version/main.go | 1 | ||||
-rw-r--r-- | tests/functional/version/scrypt.go | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/tests/functional/version/main.go b/tests/functional/version/main.go new file mode 120000 index 0000000..f67563d --- /dev/null +++ b/tests/functional/version/main.go @@ -0,0 +1 @@ +../../main.go
\ No newline at end of file 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) + }) +} |