Sha256: 4253839988958a5f92b9a4d35dccbfcc33d67706141659a01461cd01a66cd281
Contents?: true
Size: 933 Bytes
Versions: 8
Compression:
Stored size: 933 Bytes
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.dns.be/property_status_outofservice.expected # # and regenerate the tests with the following rake task # # $ rake spec:generate # require 'spec_helper' require 'whois/record/parser/whois.dns.be.rb' describe Whois::Record::Parser::WhoisDnsBe, "property_status_outofservice.expected" do before(:each) do file = fixture("responses", "whois.dns.be/property_status_outofservice.txt") part = Whois::Record::Part.new(:body => File.read(file)) @parser = klass.new(part) end describe "#status" do it do @parser.status.should == :redemption end end describe "#available?" do it do @parser.available?.should == false end end describe "#registered?" do it do @parser.registered?.should == true end end end
Version data entries
8 entries across 8 versions & 1 rubygems