- 
          
 - 
                Notifications
    
You must be signed in to change notification settings  - Fork 100
 
Open
Labels
Description
With an integration test that looks like
it 'should make a new user' do
  lambda do
    visit register_path
    fill_in 'first_name',            :with => 'bob'
    fill_in 'last_name',             :with => 'hope'
    fill_in 'email',                 :with => '[email protected]'
    fill_in 'password',              :with => 'password'
    fill_in 'password_confirmation', :with => 'password'
     click_button 'Go!'
     #    save_and_open_page
     page.current_path.should eq(registration_step_one_path)
  end.should change(User, :count).by(1)
endThe POST path '/auth/identity/register' is not found by Capybara