From 2b06d2b0e08261b026abf67d092aed3508211d77 Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Thu, 13 Jun 2013 10:28:52 -0600 Subject: [PATCH] Clarify that examples are for signing in (as opposed to up) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0474122f..97c39e0c 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ Capybara with `:type => :feature`. You can now write your specs like so: ```ruby -describe "the signup process", :type => :feature do +describe "the signin process", :type => :feature do before :each do User.make(:email => 'user@example.com', :password => 'caplin') end @@ -127,7 +127,7 @@ end Finally, Capybara also comes with a built in DSL for creating descriptive acceptance tests: ```ruby -feature "Signing up" do +feature "Signing in" do background do User.make(:email => 'user@example.com', :password => 'caplin') end @@ -162,7 +162,7 @@ end ## Using Capybara with Test::Unit -* If you are using Rails, add the following code in your `test_helper.rb` +* If you are using Rails, add the following code in your `test_helper.rb` file to make Capybara available in all test cases deriving from `ActionDispatch::IntegrationTest`: