aboutsummaryrefslogtreecommitdiffstats
path: root/test/rss/test_maker_xml-stylesheet.rb
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-10-31 14:14:21 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-10-31 14:14:21 +0000
commitd58d59b0a4fa6859a3d3efd1a9d40832c3007ecf (patch)
treef9ae1db068b4fe971550f6cb2afda5a2c399f2bd /test/rss/test_maker_xml-stylesheet.rb
parentc6cf2e24fe9895b84308374017100cb77900d6db (diff)
downloadruby-d58d59b0a4fa6859a3d3efd1a9d40832c3007ecf.tar.gz
* lib/rss/maker/*.rb: added RSS Maker.
* test/rss/test_maker_*.rb: added tests for RSS Maker. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rss/test_maker_xml-stylesheet.rb')
-rw-r--r--test/rss/test_maker_xml-stylesheet.rb39
1 files changed, 39 insertions, 0 deletions
diff --git a/test/rss/test_maker_xml-stylesheet.rb b/test/rss/test_maker_xml-stylesheet.rb
new file mode 100644
index 0000000000..13ab0daf8e
--- /dev/null
+++ b/test/rss/test_maker_xml-stylesheet.rb
@@ -0,0 +1,39 @@
+require "rss-testcase"
+
+require "rss/maker"
+
+module RSS
+ class TestMakerXMLStyleSheet < TestCase
+
+ def test_rss10
+ href = 'a.xsl'
+ type = 'text/xsl'
+ title = 'sample'
+ media = 'printer'
+ charset = 'UTF-8'
+ alternate = 'yes'
+
+ rss = RSS::Maker.make("1.0") do |maker|
+ maker.xml_stylesheets << {
+ :href => href,
+ :type => type,
+ :title => title,
+ :media => media,
+ :charset => charset,
+ :alternate => alternate,
+ }
+
+ setup_dummy_channel(maker)
+ end
+
+ xss = rss.xml_stylesheets.first
+ assert_equal(href, xss.href)
+ assert_equal(type, xss.type)
+ assert_equal(title, xss.title)
+ assert_equal(media, xss.media)
+ assert_equal(charset, xss.charset)
+ assert_equal(alternate, xss.alternate)
+ end
+
+ end
+end