Skip to content

Instantly share code, notes, and snippets.

@tenderlove
Created November 3, 2008 21:58
Show Gist options
  • Save tenderlove/21999 to your computer and use it in GitHub Desktop.
Save tenderlove/21999 to your computer and use it in GitHub Desktop.
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