aboutsummaryrefslogtreecommitdiff
path: root/internal/cvss/v2vector_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cvss/v2vector_test.go')
-rw-r--r--internal/cvss/v2vector_test.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/internal/cvss/v2vector_test.go b/internal/cvss/v2vector_test.go
new file mode 100644
index 0000000..3ef4194
--- /dev/null
+++ b/internal/cvss/v2vector_test.go
@@ -0,0 +1,17 @@
+package cvss
+
+import "testing"
+
+// test v2 vector
+var testCvssV2 = "AV:L/AC:L/Au:N/C:N/I:N/A:P"
+
+// Test cvss v2 parser
+func TestCvssV2Parser(t *testing.T) {
+ t.Run("TestV2Parser", func(t *testing.T) {
+ // parse vector, check for error
+ _, err := NewVector(testCvssV2)
+ if err != nil {
+ t.Error(err)
+ }
+ })
+}