0

rake タスクを介して rspec テストを実行すると、

1) Whois::Record::Parser::WhoisUa status_available.expected#created_on 
 Failure/Error: lambda { @parser.created_on }.should raise_error(Whois::PropertyNotSupported)

しかし、私は次のようにstatus_available_spec.rb見えます:

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

require 'spec_helper'
require 'whois/record/parser/whois.ua.rb'

describe Whois::Record::Parser::WhoisUa, "status_available.expected" do

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

  describe "#status" do
    it do
      @parser.status.should == :available
    end
  end
  describe "#available?" do
    it do
      @parser.available?.should == true
    end
  end
  describe "#registered?" do
    it do
      @parser.registered?.should == false
    end
  end
  describe "#created_on" do
    it do
      @parser.created_on.should == nil
    end
  end
  describe "#updated_on" do
    it do
      @parser.updated_on.should == nil
    end
  end
  describe "#expires_on" do
    it do
      @parser.expires_on.should == nil
    end
  end
  describe "#nameservers" do
    it do
      @parser.nameservers.should be_a(Array)
      @parser.nameservers.should == []
    end
  end
end

ご覧のとおり、 no が.should raise_error(Whois::PropertyNotSupported)代わりに に変更されました.should == nil

レーキキャッシングはそのようなものですか、それとも何ですか?

4

0 に答える 0