mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
This commit was manufactured by cvs2svn to create branch 'ruby_1_8'.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7183 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4e8d491b90
commit
3d712cdd9d
11 changed files with 2309 additions and 0 deletions
75
test/rss/test_maker_xml-stylesheet.rb
Normal file
75
test/rss/test_maker_xml-stylesheet.rb
Normal file
|
@ -0,0 +1,75 @@
|
|||
require "rss-testcase"
|
||||
|
||||
require "rss/maker"
|
||||
|
||||
module RSS
|
||||
class TestMakerXMLStyleSheet < TestCase
|
||||
|
||||
def test_xml_stylesheet
|
||||
href = 'a.xsl'
|
||||
type = 'text/xsl'
|
||||
title = 'sample'
|
||||
media = 'printer'
|
||||
charset = 'UTF-8'
|
||||
alternate = 'yes'
|
||||
|
||||
rss = RSS::Maker.make("1.0") do |maker|
|
||||
xss = maker.xml_stylesheets.new_xml_stylesheet
|
||||
xss.href = href
|
||||
xss.type = type
|
||||
xss.title = title
|
||||
xss.media = media
|
||||
xss.charset = charset
|
||||
xss.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)
|
||||
|
||||
|
||||
href = 'http://example.com/index.xsl'
|
||||
type = 'text/xsl'
|
||||
rss = RSS::Maker.make("1.0") do |maker|
|
||||
xss = maker.xml_stylesheets.new_xml_stylesheet
|
||||
xss.href = href
|
||||
|
||||
setup_dummy_channel(maker)
|
||||
end
|
||||
|
||||
xss = rss.xml_stylesheets.first
|
||||
assert_equal(href, xss.href)
|
||||
assert_equal(type, xss.type)
|
||||
end
|
||||
|
||||
def test_not_valid_xml_stylesheet
|
||||
href = 'xss.XXX'
|
||||
type = "text/xsl"
|
||||
|
||||
rss = RSS::Maker.make("1.0") do |maker|
|
||||
xss = maker.xml_stylesheets.new_xml_stylesheet
|
||||
# xss.href = href
|
||||
xss.type = type
|
||||
|
||||
setup_dummy_channel(maker)
|
||||
end
|
||||
assert(rss.xml_stylesheets.empty?)
|
||||
|
||||
rss = RSS::Maker.make("1.0") do |maker|
|
||||
xss = maker.xml_stylesheets.new_xml_stylesheet
|
||||
xss.href = href
|
||||
# xss.type = type
|
||||
|
||||
setup_dummy_channel(maker)
|
||||
end
|
||||
assert(rss.xml_stylesheets.empty?)
|
||||
end
|
||||
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue