Sha256: 2e684f7be14ee347377f942b0741572b88384b2c5675c94b41cba227490b133a

Contents?: true

Size: 1.75 KB

Versions: 4

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.educause.edu/property_contacts.expected
#
# and regenerate the tests with the following rake task
#
#   $ rake spec:generate
#

require 'spec_helper'
require 'whois/record/parser/whois.educause.edu.rb'

describe Whois::Record::Parser::WhoisEducauseEdu, "property_contacts.expected" do

  before(:each) do
    file = fixture("responses", "whois.educause.edu/property_contacts.txt")
    part = Whois::Record::Part.new(:body => File.read(file))
    @parser = klass.new(part)
  end

  describe "#technical_contacts" do
    it do
      @parser.technical_contacts.should be_a(Array)
      @parser.technical_contacts.should have(1).items
      @parser.technical_contacts[0].should be_a(Whois::Record::Contact)
      @parser.technical_contacts[0].id.should            == nil
      @parser.technical_contacts[0].name.should          == "Dennis L Noordam\nWindows System Administrator\nNorth Idaho College"
      @parser.technical_contacts[0].organization.should  == nil
      @parser.technical_contacts[0].address.should       == "1000 W. Garden Avenue"
      @parser.technical_contacts[0].city.should          == "Coeur d Alene"
      @parser.technical_contacts[0].zip.should           == "83814"
      @parser.technical_contacts[0].state.should         == "ID"
      @parser.technical_contacts[0].country.should       == "UNITED STATES"
      @parser.technical_contacts[0].country_code.should  == nil
      @parser.technical_contacts[0].phone.should         == "(208) 769-7860"
      @parser.technical_contacts[0].fax.should           == nil
      @parser.technical_contacts[0].email.should         == "dlnoordam@nic.edu"
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
whois-2.6.3 spec/whois/record/parser/responses/whois.educause.edu/property_contacts_spec.rb
whois-2.6.2 spec/whois/record/parser/responses/whois.educause.edu/property_contacts_spec.rb
whois-2.6.1 spec/whois/record/parser/responses/whois.educause.edu/property_contacts_spec.rb
whois-2.6.0 spec/whois/record/parser/responses/whois.educause.edu/property_contacts_spec.rb