aboutsummaryrefslogtreecommitdiff
path: root/feed/v3version_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'feed/v3version_test.go')
-rw-r--r--feed/v3version_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/feed/v3version_test.go b/feed/v3version_test.go
index 89cc6ed..1e14f33 100644
--- a/feed/v3version_test.go
+++ b/feed/v3version_test.go
@@ -35,6 +35,7 @@ func TestV3VersionUnmarshalValid(t *testing.T) {
val string
exp V3Version
} {
+ { "\"3.0\"", V30 },
{ "\"3.1\"", V31 },
}
@@ -58,6 +59,7 @@ func TestV3VersionString(t *testing.T) {
val V3Version
exp string
} {
+ { V30, "3.0" },
{ V31, "3.1" },
{ V3Version(255), "V3Version(255)" },