summaryrefslogtreecommitdiff
path: root/test/rss/test_setup_maker_slash.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <[email protected]>2020-01-11 21:48:06 +0900
committerSHIBATA Hiroshi <[email protected]>2020-01-12 12:28:29 +0900
commit83240f315a10b42b53c3b62c1fbc428f97912665 (patch)
tree2d17b6aded6273ecd7b2c8a27bd4accfb7bd5f2d /test/rss/test_setup_maker_slash.rb
parentc3ccf23d5807f2ff20127bf5e42df0977bf672fb (diff)
Make rss library to the bundle gems
[Feature #16485][ruby-core:96683]
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2832
Diffstat (limited to 'test/rss/test_setup_maker_slash.rb')
-rw-r--r--test/rss/test_setup_maker_slash.rb39
1 files changed, 0 insertions, 39 deletions
diff --git a/test/rss/test_setup_maker_slash.rb b/test/rss/test_setup_maker_slash.rb
deleted file mode 100644
index d6973bed4e..0000000000
--- a/test/rss/test_setup_maker_slash.rb
+++ /dev/null
@@ -1,39 +0,0 @@
-# frozen_string_literal: false
-require_relative "rss-testcase"
-
-require "rss/maker"
-
-module RSS
- class TestSetupMakerSlash < TestCase
- def test_setup_maker
- elements = {
- "section" => "articles",
- "department" => "not-an-ocean-unless-there-are-lobsters",
- "comments" => 177,
- "hit_parades" => [177, 155, 105, 33, 6, 3, 0],
- }
-
- rss = RSS::Maker.make("rss1.0") do |maker|
- setup_dummy_channel(maker)
- setup_dummy_item(maker)
-
- item = maker.items.last
- item.slash_section = elements["section"]
- item.slash_department = elements["department"]
- item.slash_comments = elements["comments"]
- item.slash_hit_parade = elements["hit_parades"].join(",")
- end
- assert_not_nil(rss)
-
- new_rss = RSS::Maker.make("rss1.0") do |maker|
- rss.setup_maker(maker)
- end
- assert_not_nil(new_rss)
-
- item = new_rss.items.last
- assert_not_nil(item)
-
- assert_slash_elements(elements, item)
- end
- end
-end