これが機能する理由:
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.... が何を参照しているのかわかりません。何か案は?
前もって感謝します!