search for: test_post_checkout

Displaying 1 result from an estimated 1 matches for "test_post_checkout".

2006 Oct 13
6
If I stub do I have to mock as well?
Hi, I''m new to mocha and stubba but eager to learn. I have a rails functional test in which I would like to stub an instance method of particular class to always return true. I tried the following: def test_post_checkout Order.any_instance.stubs(:successful?).returns(true) post :checkout assert_response :redirect assert_equal "Checkout was successful.", flash[:notice] end I expected that the stub would help my test pass but instead it failed and the failure included the following:...