diff options
Diffstat (limited to '')
-rw-r--r-- | pkg/config/yaml_test.go | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/pkg/config/yaml_test.go b/pkg/config/yaml_test.go index 78a3243..4f9fe76 100644 --- a/pkg/config/yaml_test.go +++ b/pkg/config/yaml_test.go @@ -171,6 +171,12 @@ func TestBuildFeeds(tst *testing.T) { }, result: Feeds{}, }, + {name: "Maildir URL Target", wantErr: true, target: "", + feeds: []configGroupFeed{ + {Target: n("maildir:///home/foo/INBOX/Feed"), Feed: feed{Name: "muh"}}, + }, + result: Feeds{}, + }, {name: "Empty Group", wantErr: false, target: "", feeds: []configGroupFeed{ {Group: group{Group: "G1"}}, @@ -542,4 +548,4 @@ feeds: tst.Error(diff) } } -}
\ No newline at end of file +} |