diff options
author | lnu <lnu@f70e237a-67f3-0310-a06c-d2b8a7116972> | 2005-03-31 22:08:32 +0000 |
---|---|---|
committer | lnu <lnu@f70e237a-67f3-0310-a06c-d2b8a7116972> | 2005-03-31 22:08:32 +0000 |
commit | 16ec9aba7e94e628f22bcaeb3ecdd7916f3a3df5 (patch) | |
tree | fcee2e08574f55e141eeea3cb2747a4a80c04d89 /test/tc_config.rb | |
parent | 94c2f3339fbe18700fcc057367784d04bb2a76d9 (diff) | |
download | feed2imap-16ec9aba7e94e628f22bcaeb3ecdd7916f3a3df5.tar.gz feed2imap-16ec9aba7e94e628f22bcaeb3ecdd7916f3a3df5.tar.bz2 feed2imap-16ec9aba7e94e628f22bcaeb3ecdd7916f3a3df5.zip |
first import
git-svn-id: svn+ssh://svn.gna.org/svn/feed2imap/trunk/feed2imap@5 f70e237a-67f3-0310-a06c-d2b8a7116972
Diffstat (limited to '')
-rwxr-xr-x | test/tc_config.rb | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/test/tc_config.rb b/test/tc_config.rb new file mode 100755 index 0000000..ba70b33 --- /dev/null +++ b/test/tc_config.rb @@ -0,0 +1,48 @@ +#!/usr/bin/ruby -w + +$:.unshift File.join(File.dirname(__FILE__), '..', 'lib') + +require 'test/unit' +require 'feed2imap/config' +require 'stringio' + +CONF1 = <<EOF +cache: /home/lucas/.feed2imap_cachedatabase +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 +CONF2 = <<EOF +feeds: + - name: feed1 + url: http://something + target: imap://login:pasword@ezaezae/Feeds/A + - name: feed2 + url: http://something2 + target: imaps://login:pasword@ezaezae/Feeds/B +EOF + +class ConfigTest < Test::Unit::TestCase + def test_cache + sio = StringIO::new CONF1 + conf = F2IConfig::new(sio) + assert_equal('/home/lucas/.feed2imap_cachedatabase', conf.cache) + # testing default value + sio = StringIO::new CONF2 + conf = F2IConfig::new(sio) + assert_equal(ENV['HOME'] + '/.feed2imap.cache', conf.cache) + end + + def test_accounts + sio = StringIO::new CONF1 + conf = F2IConfig::new(sio) + assert_equal(1, conf.imap_accounts.length) + sio = StringIO::new CONF2 + conf = F2IConfig::new(sio) + assert_equal(2, conf.imap_accounts.length) + end +end |