Skip to content

Instantly share code, notes, and snippets.

@IdahoEv
Created April 22, 2014 18:33
Show Gist options
  • Save IdahoEv/11189668 to your computer and use it in GitHub Desktop.
Save IdahoEv/11189668 to your computer and use it in GitHub Desktop.
describe 'static/index' do
let :mock_restaurant do
double(User, :meals_served => 5)
end
let! :array_of_restaurants do
[ mock_restaurant, mock_restaurant, mock_restaurant, mock_restaurant, mock_restaurant ]
end
before do
assign(:restaurants, array_of_restaurants)
end
it "should render successfully" do
render
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment