Skip to content

Instantly share code, notes, and snippets.

@andreaseriksson
Created May 18, 2013 13:43
Show Gist options
  • Save andreaseriksson/5604436 to your computer and use it in GitHub Desktop.
Save andreaseriksson/5604436 to your computer and use it in GitHub Desktop.
RSPEC Controller spec #NESTED ROUTE
describe 'GET#show' do
it "renders the :show template for the appointment" do
contact = create(:contact)
appointment = create(:appointment, contact: contact)
get :show, id: appointment, contact_id: contact.id
expect(response).to render_template :show
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment