Skip to content

Instantly share code, notes, and snippets.

@jwoertink
Last active August 29, 2015 14:07
Show Gist options
  • Save jwoertink/da934856b9cbe227ea3b to your computer and use it in GitHub Desktop.
Save jwoertink/da934856b9cbe227ea3b to your computer and use it in GitHub Desktop.
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