summaryrefslogtreecommitdiffstats
path: root/test/rss
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-20 17:36:36 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-20 17:36:36 +0000
commitd596fadb735af6d4956d003a87be46d5c934d1c9 (patch)
treef23af24cc3d193da3cc59197e065e2b986e8bb5d /test/rss
parent517fc96672a0c8c582219184d7157afbf543ffef (diff)
downloadruby-d596fadb735af6d4956d003a87be46d5c934d1c9.tar.gz
ruby-d596fadb735af6d4956d003a87be46d5c934d1c9.tar.xz
ruby-d596fadb735af6d4956d003a87be46d5c934d1c9.zip
* object.c (rb_mod_attr): make Module#attr to be an alias to
attr_reader. [RCR#331] * ruby.h: export classes/modules to implement sandbox. [ruby-core:08283] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10577 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rss')
-rw-r--r--test/rss/test_xml-stylesheet.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/rss/test_xml-stylesheet.rb b/test/rss/test_xml-stylesheet.rb
index c88a858f5..791fded60 100644
--- a/test/rss/test_xml-stylesheet.rb
+++ b/test/rss/test_xml-stylesheet.rb
@@ -74,10 +74,12 @@ module RSS
:media => "printer", :charset => "UTF-8",
:alternate => "yes"},],
].each do |xsss|
+ p xsss
doc = REXML::Document.new(make_sample_RDF)
root = doc.root
xsss.each do |xss|
content = xss.collect do |key, name|
+ p [key, name]
%Q[#{key}="#{name}"]
end.join(" ")
pi = REXML::Instruction.new("xml-stylesheet", content)