【问题标题】:Rspec to have(n).items undefined methodRspec to have(n).items undefined 方法
【发布时间】:2014-07-29 10:59:08
【问题描述】:

我正在尝试遵循指南 on code.tuts,但我不断收到错误消息。

这是我的库规范:

require 'spec_helper'

describe Library do
  before :all do
    lib_arr = [
      Book.new("JavaScript: The Good Parts", "Douglas Crockford", :development),
      Book.new("Dont Make me Think", "Steve Krug", :usability),
    ]

    File.open "books.yml", "w" do |f|
      f.write YAML::dump lib_arr
    end
  end

  before :each do
    @lib = Library.new "books.yml"
  end

  describe  "#new" do
    context "with no parameters" do
      it "has no book" do
        lib = Library.new
        expect(lib).to have(0).books
      end
    end

    context "with a yaml file name parameters" do
      it "has two books" do
        expect(@lib).to_have(0).books
      end
    end
  end

  it "returns all the books in a given category" do
    expect(@lib.get_books_in_category(:development).length).to eql 1
  end

  it "accepts new books" do
    @lib.add_book(Book.new("Designing for the Web", "Mark Boulton", :design))
    expect(@lib.get_book("Designing for the Web")).to be_an_instance_of Book
  end

  it "saves the library" do
    books = @lib.books.map { |book| book.title}
    @lib.save
    lib2 = Library.new 'books.yml'
    books2 = lib2.books.map { |book| book.title }
    expect(books).to eql books2
  end
end

我知道have 是未定义的。我发现这是我的台词

expect(@lib).to have(0).books
expect(lib).to have(0).books

我的语法是否过时了?我用谷歌搜索了,找不到。

【问题讨论】:

标签: ruby rspec rspec3


【解决方案1】:

have/have_exactlyhave_at_leasthave_at_most 匹配器已从 RSpec 3 中删除。它们现在位于单独的 rspec-collection_matchers gem 中。

或者,正如 zishe 所说,您可以使用 eq 代替 have/have_exactlybe >= 代替 have_at_leastbe <= 代替 have_at_most,而不是安装 gem .

来源:http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3

【讨论】:

  • @br3nt,RSpec 2 为一件事做了太多的事情,这对初学者来说很难
猜你喜欢
  • 1970-01-01
  • 2017-02-26
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2022-09-27
  • 1970-01-01
相关资源
最近更新 更多