summaryrefslogtreecommitdiff
path: root/test/rss/test_maker_content.rb
diff options
context:
space:
mode:
author(no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-01 08:21:06 +0000
committer(no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-01 08:21:06 +0000
commit8b33686b91623cd321f8071e8f76d75e663d44ef (patch)
tree0472ce06f5cece724af98bb7cea1890c72deab10 /test/rss/test_maker_content.rb
parent8522deb2b2e97cb0a78f9d00c0d7d7ff9af57b62 (diff)
This commit was manufactured by cvs2svn to create branch 'ruby_1_8'.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7168 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rss/test_maker_content.rb')
-rw-r--r--test/rss/test_maker_content.rb34
1 files changed, 34 insertions, 0 deletions
diff --git a/test/rss/test_maker_content.rb b/test/rss/test_maker_content.rb
new file mode 100644
index 0000000000..faadd87131
--- /dev/null
+++ b/test/rss/test_maker_content.rb
@@ -0,0 +1,34 @@
+require "rss-testcase"
+
+require "rss/maker"
+
+module RSS
+ class TestMakerContent < TestCase
+
+ def setup
+ @uri = "http://purl.org/rss/1.0/modules/content/"
+
+ @elements = {
+ :encoded => "<em>ATTENTION</em>",
+ }
+ end
+
+ def test_rss10
+ rss = RSS::Maker.make("1.0", ["content"]) do |maker|
+ setup_dummy_channel(maker)
+
+ setup_dummy_item(maker)
+ item = maker.items.last
+ @elements.each do |name, value|
+ item.__send__("#{accessor_name(name)}=", value)
+ end
+ end
+ assert_content(@elements, rss.items.last)
+ end
+
+ private
+ def accessor_name(name)
+ "content_#{name}"
+ end
+ end
+end