Last active
August 29, 2015 14:07
-
-
Save jwoertink/da934856b9cbe227ea3b 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
require 'spec_helper' | |
describe HomeController do | |
describe '#show' do | |
it 'renders the taco view when params[:page] is set to taco' do | |
get(:show, :page => 'pricing') | |
response.should render_template('home/pricing') | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment