Skip to content

Instantly share code, notes, and snippets.

View PeterBloom's full-sized avatar

Peter Bloom PeterBloom

View GitHub Profile
require 'spec_helper'
describe GamesController do
describe 'GET#index' do
before do
@fake_games = [ double('game1'), double('game2'), double('game3') ]
end
it 'gets all games' do
Game.should_receive(:all).and_return(@fake_games)