The program works when I run it on the server.

describe FoodsController do
  render_views

   before(:each) do
     Food.delete_all
     login_as_admin
     Food.stubs(:find).with("1").returns(@food = mock_model(Food,
:save=>false))
   end

   #describe "stub_model(Food) with a hash of stubs" do
     #let(:food) do
      # stub_model Food, :id => 5, :food =>{:name => 'brisket'}
     #end

     describe "GET edit" do
         it "should assign the requested food to @food" do
           #Food.should_receive(:find).with("1").and_return(@food)
           puts @food
           get :edit, :id => @food.id
           assigns(:food).should be(@food)
         end
       end
end
On Tue, May 31, 2011 at 13:50, Ken Egervari <[email protected]> wrote:

>
> On Tue, May 31, 2011 at 2:38 PM, Chris Habgood <[email protected]> wrote:
>
>> Still getting the same error.  ugggh.
>
>
> Truly, you have to give us some more code to help you.
>
> _______________________________________________
> rspec-users mailing list
> [email protected]
> http://rubyforge.org/mailman/listinfo/rspec-users
>



-- 
*"In matters of style, swim with the current; in matters of principle, stand
like a rock."
Thomas Jefferson
*
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to