mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/rss, test/rss: backported from trunk. (2005-11-16 - now)
* lib/rss/rss.rb: improved type conversion. * lib/rss/1.0.rb: ditto. * lib/rss/0.9.rb: ditto. * lib/rss/2.0.rb: ditto. * lib/rss/image.rb: ditto. * lib/rss/syndication.rb: ditto. * test/rss/test_2.0.rb: added type conversion tests. * test/rss/test_accessor.rb: ditto. * test/rss/test_to_s.rb: ditto. * test/rss/test_syndication.rb: ditto. * test/rss/test_setup_maker_2.0.rb: ditto. * test/rss/test_setup_maker_1.0.rb: ditto. * test/rss/test_setup_maker_0.9.rb: ditto. * test/rss/test_maker_sy.rb: ditto. * test/rss/test_maker_image.rb: ditto. * test/rss/test_maker_2.0.rb: ditto. * test/rss/test_maker_0.9.rb: ditto. * test/rss/test_image.rb: ditto. * test/rss/test_maker_1.0.rb: use assert instead of assert_equal. * test/rss/rss-assertions.rb: improved type conversion assertions. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10298 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2da88324a2
commit
448dce34a6
21 changed files with 458 additions and 217 deletions
|
@ -26,8 +26,8 @@ module RSS
|
|||
},
|
||||
{
|
||||
"dc:title" => "Example Image",
|
||||
"#{@prefix}:width" => 100,
|
||||
"#{@prefix}:height" => 65,
|
||||
"#{@prefix}:width" => "100",
|
||||
"#{@prefix}:height" => "65",
|
||||
},
|
||||
],
|
||||
[
|
||||
|
@ -36,8 +36,8 @@ module RSS
|
|||
},
|
||||
{
|
||||
"dc:title" => "Culture",
|
||||
"#{@prefix}:width" => 80,
|
||||
"#{@prefix}:height" => 50,
|
||||
"#{@prefix}:width" => "80",
|
||||
"#{@prefix}:height" => "50",
|
||||
},
|
||||
]
|
||||
]
|
||||
|
@ -93,6 +93,23 @@ EOR
|
|||
assert_equal(@favicon_attrs[full_name], favicon.__send__(name))
|
||||
end
|
||||
|
||||
%w(small medium large).each do |value|
|
||||
assert_nothing_raised do
|
||||
favicon.size = value
|
||||
favicon.image_size = value
|
||||
end
|
||||
end
|
||||
|
||||
%w(aaa AAA SMALL MEDIUM LARGE).each do |value|
|
||||
args = ["#{@prefix}:favicon", value, "#{@prefix}:size"]
|
||||
assert_not_available_value(*args) do
|
||||
favicon.size = value
|
||||
end
|
||||
assert_not_available_value(*args) do
|
||||
favicon.image_size = value
|
||||
end
|
||||
end
|
||||
|
||||
[
|
||||
%w(dc_title dc:title sample-favicon),
|
||||
].each do |name, full_name, new_value|
|
||||
|
@ -120,10 +137,19 @@ EOR
|
|||
end
|
||||
|
||||
[
|
||||
["width", "image:width", 111],
|
||||
["image_width", "image:width", 44],
|
||||
["height", "image:height", 222],
|
||||
["image_height", "image:height", 88],
|
||||
["width", "image:width", "111"],
|
||||
["image_width", "image:width", "44"],
|
||||
["height", "image:height", "222"],
|
||||
["image_height", "image:height", "88"],
|
||||
].each do |name, full_name, new_value|
|
||||
assert_equal(contents[full_name].to_i, image_item.__send__(name))
|
||||
image_item.__send__("#{name}=", new_value)
|
||||
assert_equal(new_value.to_i, image_item.__send__(name))
|
||||
image_item.__send__("#{name}=", contents[full_name])
|
||||
assert_equal(contents[full_name].to_i, image_item.__send__(name))
|
||||
end
|
||||
|
||||
[
|
||||
["dc_title", "dc:title", "sample-image"],
|
||||
].each do |name, full_name, new_value|
|
||||
assert_equal(contents[full_name], image_item.__send__(name))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue