sr-atom-test 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/tests/relative_uri.rb +1 -1
- data/tests/relative_uri_inherit.rb +1 -1
- data/tests/relative_uri_inherit_2.rb +1 -1
- metadata +1 -1
data/tests/relative_uri.rb
CHANGED
|
@@ -8,5 +8,5 @@ Description: feed title contains relative URI resolved relative to xml:base
|
|
|
8
8
|
XML
|
|
9
9
|
|
|
10
10
|
test = lambda { |feed|
|
|
11
|
-
assert_equal
|
|
11
|
+
assert_equal "Example <a href='http://example.com/test/test.html'>test</a>", feed.title.to_s
|
|
12
12
|
}
|
|
@@ -8,5 +8,5 @@ Description: feed title contains relative URI resolved relative to xml:base inhe
|
|
|
8
8
|
XML
|
|
9
9
|
|
|
10
10
|
test = lambda { |feed|
|
|
11
|
-
assert_equal
|
|
11
|
+
assert_equal "Example <a href='http://example.com/test/test.html'>test</a>", feed.title.to_s
|
|
12
12
|
}
|
|
@@ -8,5 +8,5 @@ Description: feed title contains relative URI resolved relative to xml:base over
|
|
|
8
8
|
XML
|
|
9
9
|
|
|
10
10
|
test = lambda { |feed|
|
|
11
|
-
assert_equal
|
|
11
|
+
assert_equal "Example <a href='http://example.com/test/test.html'>test</a>", feed.title.to_s
|
|
12
12
|
}
|