diff options
Diffstat (limited to 'novactl/lib/version_test.go')
| -rw-r--r-- | novactl/lib/version_test.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/novactl/lib/version_test.go b/novactl/lib/version_test.go new file mode 100644 index 0000000..093019a --- /dev/null +++ b/novactl/lib/version_test.go @@ -0,0 +1,12 @@ +package lib_test + +import ( + "github.com/discordnova/nova/novactl/lib" + "testing" +) + +func TestVersion(t *testing.T) { + if lib.VERSION != "0.0.1" { + t.Fatalf("Version number do not match %s", lib.VERSION) + } +}
\ No newline at end of file |
