Skip to content

Instantly share code, notes, and snippets.

@andreaseriksson
Created May 18, 2013 13:38
Show Gist options
  • Save andreaseriksson/5604417 to your computer and use it in GitHub Desktop.
Save andreaseriksson/5604417 to your computer and use it in GitHub Desktop.
RSPEC Controller spec #NEW
describe 'GET#new' do
it "assigns a new Message to @message" do
get :new
expect(assigns(:message)).to be_a_new(Message)
end
it "renders the :new template" do
get :new
expect(response).to render_template :new
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment