diff options
Diffstat (limited to '')
-rwxr-xr-x | test/tc_config.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/tc_config.rb b/test/tc_config.rb index ce910e9..ad4877c 100755 --- a/test/tc_config.rb +++ b/test/tc_config.rb @@ -34,6 +34,17 @@ feeds: url: http://something2 target: imaps://login:pasword@ezaezae/Feeds/B EOF +CONFPARTS = <<EOF +parts: text +include-images: false +feeds: + - name: feed1 + url: http://something + target: imap://login:pasword@ezaezae/Feeds/A + - name: feed2 + url: http://something2 + target: imap://login:pasword@ezaezae/Feeds/B +EOF class ConfigTest < Test::Unit::TestCase def test_cache @@ -61,4 +72,11 @@ class ConfigTest < Test::Unit::TestCase assert_equal('http://something', conf.feeds[0].url) assert_equal('http://something2', conf.feeds[1].url) end + + def test_parts + sio = StringIO::new CONFPARTS + conf = F2IConfig::new(sio) + assert conf.parts.include?('text') + assert ! conf.parts.include?('html') + end end |