0

任何想法为什么这有效:

it {view.should_receive(:update_method)}

但这不是?:

subject { view }
it { should_receive(:update_method) }

其他一切都一样。我收到此错误:

Failure/Error: it {should_receive(:update_method) 
(#<RSpec::Core::ExampleGroup::Nested_1:0x7faf27602d58>).update_method
    expected: 1 time
    received: 0 times 

但我不知道 RSpec::Core::ExampleGroup::Nested.... 指的是什么。有任何想法吗?

提前致谢!

4

1 回答 1

1

这是 24 小时内第二次出现这种情况。有什么东西在空中。有关说明,请参见https://github.com/rspec/rspec-mocks/issues/148

于 2012-06-08T01:11:38.793 回答