blob: 665780ffa0706ec10942e0f03f27b2d0d3a09d40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package lib_test
import (
"testing"
"github.com/discordnova/nova/novactl/lib"
)
func TestVersion(t *testing.T) {
if lib.VERSION != "0.0.1" {
t.Fatalf("Version number do not match %s", lib.VERSION)
}
}
|