summaryrefslogtreecommitdiff
path: root/novactl/lib/version_test.go
diff options
context:
space:
mode:
authorMatthieu <matthieu@developershouse.xyz>2021-09-04 06:20:02 +0400
committerMatthieu <matthieu@developershouse.xyz>2021-09-04 06:20:02 +0400
commit735c7e49fd2f7f5425949ae7639fbf5c0c9278a8 (patch)
treee3db3e3a0bbbcf6dce68a3063369f562abc6f494 /novactl/lib/version_test.go
parent29f4df85fa4dd559010f2acd68cdfe43ce0ebed4 (diff)
base ratelimiter
Diffstat (limited to 'novactl/lib/version_test.go')
-rw-r--r--novactl/lib/version_test.go12
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