summaryrefslogtreecommitdiff
path: root/test/rss
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-05 15:15:04 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-05 15:15:04 +0000
commitd9034d23ce8dcb88f310a9e33b79379123c1f7fd (patch)
treebdc7a1d43a6679033d42ecaf4370123068533435 /test/rss
parent74f6b8e7c9ca570b7663554f7ce2b76f3eb78497 (diff)
* lib/rss/{trackback,syndication,dublincore,content}.rb: worked
with ruby 1.6 again. * test/rss/rss-assertions.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6585 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rss')
-rw-r--r--test/rss/rss-assertions.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/rss/rss-assertions.rb b/test/rss/rss-assertions.rb
index db9c39dd28..ad7da1f6b4 100644
--- a/test/rss/rss-assertions.rb
+++ b/test/rss/rss-assertions.rb
@@ -1,4 +1,16 @@
# -*- tab-width: 2 -*- vim: ts=2
+module Test
+ module Unit
+ module Assertions
+ # For backward compatibility
+ unless instance_methods.include?("assert_raise")
+ def assert_raise(*args, &block)
+ assert_raises(*args, &block)
+ end
+ end
+ end
+ end
+end
module RSS
module Assertions