Sha256: 564ddb6dc89b662d50a6789e16e60c6de749898f5d13e6f89936c8d4a7c32ded
Contents?: true
Size: 1.63 KB
Versions: 5
Compression:
Stored size: 1.63 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_private_person.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_private_person.expected" do before(:each) do file = fixture("responses", "whois.nic.hu/schema-1.99/property_contact_private_person.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[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 =~ /Buruzs/ @parser.registrant_contacts[0].organization.should == nil @parser.registrant_contacts[0].address.should == nil @parser.registrant_contacts[0].city.should == nil @parser.registrant_contacts[0].zip.should == nil @parser.registrant_contacts[0].state.should == nil @parser.registrant_contacts[0].country_code.should == nil @parser.registrant_contacts[0].phone.should == nil @parser.registrant_contacts[0].fax.should == nil @parser.registrant_contacts[0].email.should == nil end end end
Version data entries
5 entries across 5 versions & 1 rubygems