任何想法为什么这有效:
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.... 指的是什么。有任何想法吗?
提前致谢!