5

我正在使用 RSpec2 v2.13.1,似乎 rspec-mocks ( https://github.com/rspec/rspec-mocks ) 应该包含在其中。当然它列在我的 Gemfile.lock 中。

但是,当我运行测试时,我得到

     Failure/Error: allow(Notifier).to receive(:new_comment) { @decoy }
 NoMethodError:
   undefined method `allow' for #<RSpec::Core::ExampleGroup::Nested_1::Nested_1:0x007fc302aeca78>

这是我要运行的测试:

require 'spec_helper'

describe CommentEvent do

  before(:each) do
    @event = FactoryGirl.build(:comment_event)
    @decoy = double('Resque::Mailer::MessageDecoy', :deliver => true)
    # allow(Notifier).to receive(:new_comment) { @decoy }
    # allow(Notifier).to receive(:welcome_email) { @decoy }
  end

  it "should have a comment for its object" do
    @event.object.should be_a(Comment)
  end

  describe "email notifications" do
    it "should be sent for a user who chooses to be notified" do
      allow(Notifier).to receive(:new_comment) { @decoy }
      allow(Notifier).to receive(:welcome_email) { @decoy }
      [...]
    end

目标是消除通知器和消息诱饵,以便我可以测试我的 CommentEvent 类是否确实在调用前者。我在 rspec-mocks 文档中读到了 before(:all) 中不支持存根,但它在 before(:each) 中也不起作用。帮助!

感谢您的任何见解...

4

1 回答 1

4

Notifier,根据它的名字,是一个常数。

您不能使用allow或将常数加倍double。相反,您需要使用stub_const

# Make a mock of Notifier at first
stub_const Notifier, Class.new

# Then stub the methods of Notifier
stub(:Notifier, :new_comment => @decoy)

编辑:修复了 stub() 调用的语法错误

于 2013-06-24T16:33:47.013 回答