mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/rss/rss.rb (RSS::VERSION): 0.1.2 -> 0.1.3.
* lib/rss/rss.rb: accept inheritance. [ruby-talk:126104] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7774 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c853ea40c3
commit
e1e5eda547
5 changed files with 114 additions and 50 deletions
41
test/rss/test_inherit.rb
Normal file
41
test/rss/test_inherit.rb
Normal file
|
@ -0,0 +1,41 @@
|
|||
require "rss-testcase"
|
||||
|
||||
require "rss/1.0"
|
||||
|
||||
module RSS
|
||||
class TestInherit < TestCase
|
||||
|
||||
class InheritedImage < RSS::RDF::Image
|
||||
def self.indent_size; 1; end
|
||||
def self.tag_name; 'image'; end
|
||||
end
|
||||
|
||||
def setup
|
||||
@rss = make_RDF(<<-EOR)
|
||||
#{make_channel}
|
||||
#{make_image}
|
||||
#{make_item}
|
||||
#{make_textinput}
|
||||
EOR
|
||||
end
|
||||
|
||||
def test_inherit
|
||||
rss = RSS::Parser.parse(@rss)
|
||||
orig_image = rss.image
|
||||
prefix = "[INHERIT]"
|
||||
image = InheritedImage.new("#{prefix} #{orig_image.about}")
|
||||
image.title = "#{prefix} #{orig_image.title}"
|
||||
image.url = "#{prefix} #{orig_image.url}"
|
||||
image.link = "#{prefix} #{orig_image.link}"
|
||||
rss.image = image
|
||||
|
||||
new_rss = RSS::Parser.parse(rss.to_s)
|
||||
new_image = new_rss.image
|
||||
assert_equal("#{prefix} #{orig_image.about}", new_image.about)
|
||||
assert_equal("#{prefix} #{orig_image.title}", new_image.title)
|
||||
assert_equal("#{prefix} #{orig_image.url}", new_image.url)
|
||||
assert_equal("#{prefix} #{orig_image.link}", new_image.link)
|
||||
end
|
||||
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue