I use rspec_scaffold to generate a part of examples as below: it "should expose a newly created awarding_body as @awarding_body" do AwardingBody.should_receive(:new).with({'these' => 'params'}).and_return(mock_awarding_body(:save => true)) post :create, :awarding_body => {:these => 'params'} assigns(:awarding_body).should equal(mock_awarding_body) end
After i execute the example, below error occurs: Mock 'AwardingBody_1193' received unexpected message :code with (no args) how to deal with it? -- Posted via http://www.ruby-forum.com/. _______________________________________________ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-users