Sha256: a3d0cef32093f411a9fd03bc1d1919547d457287ef081d3b9f54c8d59db79e17
Contents?: true
Size: 1.22 KB
Versions: 8
Compression:
Stored size: 1.22 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_without_address.expected # # and regenerate the tests with the following rake task # # $ rake spec:generate # require 'spec_helper' require 'whois/record/parser/whois.nic.hu.rb' describe Whois::Record::Parser::WhoisNicHu, "property_contact_without_address.expected" do before(:each) do file = fixture("responses", "whois.nic.hu/schema-1.99/property_contact_without_address.txt") part = Whois::Record::Part.new(:body => File.read(file)) @parser = klass.new(part) end describe "#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(Whois::Record::Contact) @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 end end end
Version data entries
8 entries across 8 versions & 1 rubygems