diff options
Diffstat (limited to 'test/rss/test_maker_2.0.rb')
-rw-r--r-- | test/rss/test_maker_2.0.rb | 56 |
1 files changed, 43 insertions, 13 deletions
diff --git a/test/rss/test_maker_2.0.rb b/test/rss/test_maker_2.0.rb index b0752f985f..dc08ada34b 100644 --- a/test/rss/test_maker_2.0.rb +++ b/test/rss/test_maker_2.0.rb @@ -51,11 +51,20 @@ module RSS webMaster = "web master" rating = "6" docs = "http://foo.com/doc" - skipDays = "Sunday" - skipHours = "13" + skipDays = [ + "Sunday", + "Monday", + ] + skipHours = [ + 0, + 13, + ] pubDate = Time.now lastBuildDate = Time.now - category = "Nespapers" + categories = [ + "Nespapers", + "misc", + ] generator = "RSS Maker" ttl = 60 @@ -69,11 +78,23 @@ module RSS maker.channel.webMaster = webMaster maker.channel.rating = rating maker.channel.docs = docs - maker.channel.skipDays = skipDays - maker.channel.skipHours = skipHours maker.channel.pubDate = pubDate maker.channel.lastBuildDate = lastBuildDate - maker.channel.category = category + + skipDays.each do |day| + new_day = maker.channel.skipDays.new_day + new_day.content = day + end + skipHours.each do |hour| + new_hour = maker.channel.skipHours.new_hour + new_hour.content = hour + end + + categories.each do |category| + new_category = maker.channel.categories.new_category + new_category.content = category + end + maker.channel.generator = generator maker.channel.ttl = ttl end @@ -88,11 +109,20 @@ module RSS assert_equal(webMaster, channel.webMaster) assert_equal(rating, channel.rating) assert_equal(docs, channel.docs) - assert_equal(skipDays, channel.skipDays) - assert_equal(skipHours, channel.skipHours) assert_equal(pubDate, channel.pubDate) assert_equal(lastBuildDate, channel.lastBuildDate) - assert_equal(category, channel.category) + + skipDays.each_with_index do |day, i| + assert_equal(day, channel.skipDays.days[i].content) + end + skipHours.each_with_index do |hour, i| + assert_equal(hour, channel.skipHours.hours[i].content) + end + + channel.categories.each_with_index do |category, i| + assert_equal(categories[i], category.content) + end + assert_equal(generator, channel.generator) assert_equal(ttl, channel.ttl) @@ -519,11 +549,11 @@ module RSS setup_dummy_channel(maker) setup_dummy_item(maker) - category = maker.items.last.category + category = maker.items.last.categories.new_category category.domain = domain category.content = content end - category = rss.channel.items.last.category + category = rss.channel.items.last.categories.last assert_equal(domain, category.domain) assert_equal(content, category.content) end @@ -535,10 +565,10 @@ module RSS setup_dummy_channel(maker) setup_dummy_item(maker) - category = maker.items.last.category + category = maker.items.last.categories.new_category # category.content = content end - assert_nil(rss.channel.items.last.category) + assert(rss.channel.items.last.categories.empty?) end def test_textInput |