Sha256: a81ca775892a91cdbf94256eb4f224a7339980ed415949325e8964050fc4cccc
Contents?: true
Size: 1.75 KB
Versions: 5
Compression:
Stored size: 1.75 KB
Contents
# encoding: utf-8 # This file is autogenerated. Do not edit it manually. # If you want change the content of this file, edit # # /spec/fixtures/responses/whois.nic.hu/schema-1.99/property_contact_company.expected # # and regenerate the tests with the following rake task # # $ rake genspec:parsers # require 'spec_helper' require 'whois/record/parser/whois.nic.hu.rb' describe Whois::Record::Parser::WhoisNicHu, "property_contact_company.expected" do before(:each) do file = fixture("responses", "whois.nic.hu/schema-1.99/property_contact_company.txt") part = Whois::Record::Part.new(:body => File.read(file)) @parser = klass.new(part) end context "#registrant_contacts" do it do @parser.registrant_contacts.should be_a(Array) @parser.registrant_contacts.should have(1).items @parser.registrant_contacts[0].should be_a(_contact) @parser.registrant_contacts[0].type.should == Whois::Record::Contact::TYPE_REGISTRANT @parser.registrant_contacts[0].id.should == nil @parser.registrant_contacts[0].name.should == "Google, Inc." @parser.registrant_contacts[0].organization.should == "Google, Inc." @parser.registrant_contacts[0].address.should == "Amphitheatre Pkwy 1600." @parser.registrant_contacts[0].city.should == "Mountain View" @parser.registrant_contacts[0].zip.should == "CA-94043" @parser.registrant_contacts[0].state.should == nil @parser.registrant_contacts[0].country_code.should == "US" @parser.registrant_contacts[0].phone.should == "+1 650 253 0000" @parser.registrant_contacts[0].fax.should == "+1 650 253 0001" @parser.registrant_contacts[0].email.should == nil end end end
Version data entries
5 entries across 5 versions & 1 rubygems