Skip to content

Instantly share code, notes, and snippets.

@mfurtak
Created August 25, 2010 01:52
Show Gist options
  • Save mfurtak/548687 to your computer and use it in GitHub Desktop.
Save mfurtak/548687 to your computer and use it in GitHub Desktop.
RSpec & Webrat gorgeousness
describe "failure" do
it "should not make a new user" do
lambda do
visit signup_path
fill_in "Name", :with => ""
fill_in "Email", :with => ""
fill_in "Password", :with => ""
fill_in "Confirmation", :with => ""
click_button
response.should render_template('users/new')
response.should have_selector("div#error_explanation")
end.should_not change(User, :count)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment