Hey folks,
How do I mock a model that is given to me by a Rails plugin? I'm
trying to mock Session from the restful_authentication plugin but I
get a number of errors telling me RSpec doesn't recognize Session.
NameError in 'SessionsController handling GET /sessions/new should be
successful'
uninitialized constant Session
An example of my usage:
before do
@session = mock_model(Session)
Session.stub!(:new).and_return(@session)
end
Thanks!
Dan Croak
http://thoughtbot.com
organic brains. digital solutions.
_______________________________________________
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users