From 9c17b97cd0f83be3fff9fa4e87fd1d29052ea616 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Fri, 4 Feb 2022 00:35:31 -0500 Subject: rename to github.com/pablotron/cvez, remove internal libs --- internal/cvss/category_test.go | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 internal/cvss/category_test.go (limited to 'internal/cvss/category_test.go') diff --git a/internal/cvss/category_test.go b/internal/cvss/category_test.go deleted file mode 100644 index 7f69689..0000000 --- a/internal/cvss/category_test.go +++ /dev/null @@ -1,41 +0,0 @@ -package cvss - -import "testing" - -func TestCategoryString(t *testing.T) { - tests := []struct { - cat Category - exp string - } { - { Base, "Base" }, - { Temporal, "Temporal" }, - { Environmental, "Environmental" }, - } - - for _, test := range(tests) { - t.Run(test.exp, func(t *testing.T) { - got := test.cat.String() - if got != test.exp { - t.Errorf("got: %s, exp: %s", got, test.exp) - } - }) - } -} - -func TestInvalidCategory(t *testing.T) { - tests := []struct { - cat Category - exp string - } { - { Category(byte(255)), "Category(255)" }, - } - - for _, test := range(tests) { - t.Run(test.exp, func(t *testing.T) { - got := test.cat.String() - if got != test.exp { - t.Errorf("got: %s, exp: %s", got, test.exp) - } - }) - } -} -- cgit v1.2.3