Created
April 22, 2014 18:33
-
-
Save IdahoEv/11189668 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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