Displaying 3 results from an estimated 3 matches for "saltmin".
Did you mean:
satmin
2007 Sep 29
1
mock_model named spaces not working
I have a namespace called saltmines
The following will fail the spec
@player = mock_model(Saltmines::Player)
1)
ActionView::TemplateError in ''/saltmines/players/index.rhtml should render
list of saltmines/players''
You have a nil object when you didn''t expect it!
You might have expected an instance of A...
2007 Oct 08
6
spec''in controllers request for nested routes
describe PlayersController, "handling GET /saltmines/games/1/players" do
before do
@game = mock_model(Game, :to_param => "1")
@game.stub_association!(:players, :find => mock_model(Player))
end
def do_get
get :index, :game_id => @game
end
it "should be successful" do
do_get
response....
2007 Oct 05
7
Easy AR association stubbing
I''ve added a method to the mock class that makes it pretty easy to
stub associations in rails. I''ve been using it for awhile and it seems
to cut down on a lot of setup code for the controller and model specs
that use associations.
#before
@person = mock_model(Person)
posts = mock(''post_proxy'')
posts.stub!(:build).and_return(mock_model(Post, :save => true))