summaryrefslogtreecommitdiff
path: root/test/rss/test_maker_sy.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_sy.rb
parentc6cf2e24fe9895b84308374017100cb77900d6db (diff)
* 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_sy.rb')
-rw-r--r--test/rss/test_maker_sy.rb43
1 files changed, 43 insertions, 0 deletions
diff --git a/test/rss/test_maker_sy.rb b/test/rss/test_maker_sy.rb
new file mode 100644
index 0000000000..c41ec1d310
--- /dev/null
+++ b/test/rss/test_maker_sy.rb
@@ -0,0 +1,43 @@
+require "rss-testcase"
+
+require "rss/maker"
+
+module RSS
+ class TestMakerSyndication < TestCase
+
+ def setup
+ @uri = "http://purl.org/rss/1.0/modules/syndication/"
+
+ t = Time.iso8601("2000-01-01T12:00:05+00:00")
+ class << t
+ alias_method(:to_s, :iso8601)
+ end
+
+ @elements = {
+ :updatePeriod => "hourly",
+ :updateFrequency => 2,
+ :updateBase => t,
+ }
+ end
+
+ def test_rss10
+ rss = RSS::Maker.make("1.0", ["syndication"]) do |maker|
+ setup_dummy_channel(maker)
+ set_elements(maker.channel)
+ end
+ assert_syndication(@elements, rss.channel)
+ end
+
+ private
+ def accessor_name(name)
+ "sy_#{name}"
+ end
+
+ def set_elements(target)
+ @elements.each do |name, value|
+ target.__send__("#{accessor_name(name)}=", value)
+ end
+ end
+
+ end
+end