Sha256: 6cd53f7d4723caadc13807261288ab6c3eb9caf6e4bdecba3559e8a1d2cb5dfe
Contents?: true
Size: 1.47 KB
Versions: 13
Compression:
Stored size: 1.47 KB
Contents
require 'spec_helper' describe( RCAP::CAP_1_1::Geocode ) do context( 'when initialised' ) do context( 'from XML' ) do before( :each ) do @original_geocode = RCAP::CAP_1_1::Geocode.new( :name => 'name', :value => 'value' ) @alert = RCAP::CAP_1_1::Alert.new( :infos => RCAP::CAP_1_1::Info.new( :areas => RCAP::CAP_1_1::Area.new( :geocodes => @original_geocode ))) @xml_string = @alert.to_xml @xml_document = REXML::Document.new( @xml_string ) @info_xml_element = RCAP.xpath_first( @xml_document.root, RCAP::CAP_1_1::Info::XPATH, RCAP::CAP_1_1::Alert::XMLNS ) @area_xml_element = RCAP.xpath_first( @info_xml_element, RCAP::CAP_1_1::Area::XPATH, RCAP::CAP_1_1::Alert::XMLNS ) @geocode_xml_element = RCAP.xpath_first( @area_xml_element, RCAP::CAP_1_1::Geocode::XPATH, RCAP::CAP_1_1::Alert::XMLNS ) @geocode = RCAP::CAP_1_1::Geocode.from_xml_element( @geocode_xml_element ) end it( 'should parse the name correctly' ) do @geocode.name.should == @original_geocode.name end it( 'should parse the value correctly' ) do @geocode.value.should == @original_geocode.value end end end context( 'when exported' ) do before( :each ) do @geocode = RCAP::CAP_1_1::Geocode.new( :name => 'name', :value => 'value' ) end context( 'to a hash' ) do it( 'should export correctly' ) do @geocode.to_h.should == { 'name' => 'value' } end end end end
Version data entries
13 entries across 13 versions & 1 rubygems