Sha256: 56552a6dc8cf93fe5d32dd0e2e9bacf81bf25f7312244bcf4ac80c8d483cd08d
Contents?: true
Size: 1.84 KB
Versions: 5
Compression:
Stored size: 1.84 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.ripn.net/su/status_available.expected # # and regenerate the tests with the following rake task # # $ rake genspec:parsers # require 'spec_helper' require 'whois/record/parser/whois.ripn.net.rb' describe Whois::Record::Parser::WhoisRipnNet, "status_available.expected" do before(:each) do file = fixture("responses", "whois.ripn.net/su/status_available.txt") part = Whois::Record::Part.new(:body => File.read(file)) @parser = klass.new(part) end context "#status" do it do @parser.status.should == [] end end context "#available?" do it do @parser.available?.should == true end end context "#registered?" do it do @parser.registered?.should == false end end context "#created_on" do it do @parser.created_on.should == nil end end context "#updated_on" do it do lambda { @parser.updated_on }.should raise_error(Whois::PropertyNotSupported) end end context "#expires_on" do it do @parser.expires_on.should == nil end end context "#registrar" do it do @parser.registrar.should == nil end end context "#registrant_contacts" do it do lambda { @parser.registrant_contacts }.should raise_error(Whois::PropertyNotSupported) end end context "#admin_contacts" do it do @parser.admin_contacts.should be_a(Array) @parser.admin_contacts.should == [] end end context "#technical_contacts" do it do lambda { @parser.technical_contacts }.should raise_error(Whois::PropertyNotSupported) end end context "#nameservers" do it do @parser.nameservers.should be_a(Array) @parser.nameservers.should == [] end end end
Version data entries
5 entries across 5 versions & 1 rubygems