ruby-avm-library/spec/avm/contact_spec.rb

53 lines
1.3 KiB
Ruby
Raw Normal View History

2011-03-07 21:38:20 +00:00
require 'spec_helper'
require 'avm/contact'
describe AVM::Contact do
let(:contact) { AVM::Contact.new(contact_info) }
subject { contact }
let(:contact_info) { {
:name => name,
:email => email,
:telephone => telephone,
:address => address,
:city => city,
:state => state,
:postal_code => postal_code,
:country => country
} }
let(:name) { 'John Bintz' }
let(:email) { 'bintz@stsci.edu' }
let(:telephone) { '800-555-1234' }
let(:address) { '3700 San Martin Drive' }
let(:city) { 'Baltimore' }
let(:state) { 'Maryland' }
let(:postal_code) { '21218' }
let(:country) { 'USA' }
its(:name) { should == name }
its(:email) { should == email }
its(:telephone) { should == telephone }
its(:address) { should == address }
its(:city) { should == city }
its(:state) { should == state }
its(:province) { should == state }
its(:postal_code) { should == postal_code }
its(:zip) { should == postal_code }
its(:country) { should == country }
2011-03-09 15:14:31 +00:00
its(:to_creator_list_element) { should == "<rdf:li>John Bintz</rdf:li>" }
2011-03-07 21:38:20 +00:00
describe 'mappings' do
AVM::Contact::FIELD_MAP.each do |key, value|
context "#{key} => #{value}" do
let(:contact_info) { { key => "test" } }
its(value) { should == "test" }
end
end
end
end