File: person_spec.rb

package info (click to toggle)
ruby-roxml 3.3.1-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 824 kB
  • ctags: 557
  • sloc: ruby: 4,066; xml: 1,013; makefile: 5
file content (37 lines) | stat: -rw-r--r-- 964 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
require 'spec_helper'
require_relative './../../examples/person'

describe Person do

  before do
    @person = Person.new
    @person.name = 'John Doe'
    @person.lat = '40.715224'
    @person.long = '-74.005966'
    @person.street = 'Evergreen Terrace'
    @person.city = 'Springfield'
    @person.zip = '2342'
  end

  it 'should only contain one location element' do
    ROXML::XML.search(@person.to_xml, 'location').count.should == 1
  end

  describe '#to_xml' do
    before do
      @xml_generated = @person.to_xml.to_s.gsub("\n",'').squeeze(' ')
    end

    it 'should generate the expected xml' do
      xml_file = File.read(xml_for('person')).gsub("\n",'').squeeze(' ')
      xml_file.should == @xml_generated
    end

    it 'should generate identical xml after a full roundtrip' do
      p = Person.from_xml(@xml_generated)
      xml_roundtrip = p.to_xml.to_s.gsub("\n",'').squeeze(' ')
      xml_roundtrip.should == @xml_generated
    end
  end

end