aboutsummaryrefslogtreecommitdiffstats
path: root/test/rexml/test_xpath_attribute_query.rb
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-17 13:46:56 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-17 13:46:56 +0000
commit2a15d25a5941301b5be6bc29eb4ac97d5aafe3dc (patch)
tree32ed30c63502d98c54555945ded41a4d0161c662 /test/rexml/test_xpath_attribute_query.rb
parent146bf4fdafefc780d65f20c983d65f9cbe3bfe2d (diff)
downloadruby-2a15d25a5941301b5be6bc29eb4ac97d5aafe3dc.tar.gz
* test/rexml/: untabify.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rexml/test_xpath_attribute_query.rb')
-rw-r--r--test/rexml/test_xpath_attribute_query.rb56
1 files changed, 28 insertions, 28 deletions
diff --git a/test/rexml/test_xpath_attribute_query.rb b/test/rexml/test_xpath_attribute_query.rb
index 8d5102bb89..99439f2286 100644
--- a/test/rexml/test_xpath_attribute_query.rb
+++ b/test/rexml/test_xpath_attribute_query.rb
@@ -10,39 +10,39 @@ class TestRexmlXpathAttributeQuery < Test::Unit::TestCase
# xmlstr1 and xmlstr2 only differ in the second line - namespaces in the root element
@@xmlstr1 = '<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:gd="http://schemas.google.com/g/2005" xmlns:gCal="http://schemas.google.com/gCal/2005">
- <id>http://www.google.com/calendar/feeds/me%40gmail.com</id>
- <entry>
- <id>http://www.google.com/calendar/feeds/me%40gmail.com/me%40gmail.com</id>
- <published>2007-05-16T13:42:27.942Z</published>
- <updated>2007-05-15T03:29:28.000Z</updated>
- <title type="text">My Calendar</title>
- <link rel="alternate" type="application/atom+xml" href="http://www.google.com/calendar/feeds/me%40gmail.com/private/full"/>
- <link rel="http://schemas.google.com/acl/2007#accessControlList" type="application/atom+xml" href="http://www.google.com/calendar/feeds/me%40gmail.com/acl/full"/>
- <link rel="self" type="application/atom+xml" href="http://www.google.com/calendar/feeds/me%40gmail.com/me%40gmail.com"/>
- <author>
- <name>Me</name>
- <email>me@gmail.com</email>
- </author>
- </entry>
+ <id>http://www.google.com/calendar/feeds/me%40gmail.com</id>
+ <entry>
+ <id>http://www.google.com/calendar/feeds/me%40gmail.com/me%40gmail.com</id>
+ <published>2007-05-16T13:42:27.942Z</published>
+ <updated>2007-05-15T03:29:28.000Z</updated>
+ <title type="text">My Calendar</title>
+ <link rel="alternate" type="application/atom+xml" href="http://www.google.com/calendar/feeds/me%40gmail.com/private/full"/>
+ <link rel="http://schemas.google.com/acl/2007#accessControlList" type="application/atom+xml" href="http://www.google.com/calendar/feeds/me%40gmail.com/acl/full"/>
+ <link rel="self" type="application/atom+xml" href="http://www.google.com/calendar/feeds/me%40gmail.com/me%40gmail.com"/>
+ <author>
+ <name>Me</name>
+ <email>me@gmail.com</email>
+ </author>
+ </entry>
</feed>'
@@xmlstr2 = '<?xml version="1.0" encoding="UTF-8"?>
<feed>
- <id>http://www.google.com/calendar/feeds/me%40gmail.com</id>
- <entry>
- <id>http://www.google.com/calendar/feeds/me%40gmail.com/me%40gmail.com</id>
- <published>2007-05-16T13:42:27.942Z</published>
- <updated>2007-05-15T03:29:28.000Z</updated>
- <title type="text">My Calendar</title>
- <link rel="alternate" type="application/atom+xml" href="http://www.google.com/calendar/feeds/me%40gmail.com/private/full"/>
- <link rel="http://schemas.google.com/acl/2007#accessControlList" type="application/atom+xml" href="http://www.google.com/calendar/feeds/me%40gmail.com/acl/full"/>
- <link rel="self" type="application/atom+xml" href="http://www.google.com/calendar/feeds/me%40gmail.com/me%40gmail.com"/>
- <author>
- <name>Me</name>
- <email>me@gmail.com</email>
- </author>
- </entry>
+ <id>http://www.google.com/calendar/feeds/me%40gmail.com</id>
+ <entry>
+ <id>http://www.google.com/calendar/feeds/me%40gmail.com/me%40gmail.com</id>
+ <published>2007-05-16T13:42:27.942Z</published>
+ <updated>2007-05-15T03:29:28.000Z</updated>
+ <title type="text">My Calendar</title>
+ <link rel="alternate" type="application/atom+xml" href="http://www.google.com/calendar/feeds/me%40gmail.com/private/full"/>
+ <link rel="http://schemas.google.com/acl/2007#accessControlList" type="application/atom+xml" href="http://www.google.com/calendar/feeds/me%40gmail.com/acl/full"/>
+ <link rel="self" type="application/atom+xml" href="http://www.google.com/calendar/feeds/me%40gmail.com/me%40gmail.com"/>
+ <author>
+ <name>Me</name>
+ <email>me@gmail.com</email>
+ </author>
+ </entry>
</feed>'
# Fails