Created
November 3, 2008 21:58
-
-
Save tenderlove/21999 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def test_namespace_as_hash | |
xml = Nokogiri::XML.parse(<<-eoxml) | |
<root> | |
<car xmlns:part="http://general-motors.com/"> | |
<part:tire>Michelin Model XGV</part:tire> | |
</car> | |
<bicycle xmlns:part="http://schwinn.com/"> | |
<part:tire>I'm a bicycle tire!</part:tire> | |
</bicycle> | |
</root> | |
eoxml | |
tires = xml.xpath('//bike:tire', {'bike' => 'http://schwinn.com/'}) | |
assert_equal 1, tires.length | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment