feature 'Guest creates a pledge', js: true do | |
VALID_CARD_NUMBER = '4242424242424242' | |
scenario 'using radio buttons to choose amount' do | |
school = create(:school) | |
visit school_path(school) | |
choose '$15' | |
fill_and_submit_pledge_form | |
expect(page).to have_content('Thank you for your donation') | |
end | |
def fill_and_submit_pledge_form | |
fill_in 'Email', with: 'tester@example.com' | |
fill_in 'Card number', with: VALID_CARD_NUMBER | |
fill_in 'Expires', with: '10/20' | |
fill_in 'Name on card', with: 'Ralph Robot' | |
fill_in 'Card code', with: '911' | |
click_button 'Send my monthly donation!' | |
end | |
end |
This comment has been minimized.
This comment has been minimized.
One of the things that I dislike about using capybara/rspec to write feature specs is that you loose the Given/When/Then format. At least is not obvious to my eyes. |
This comment has been minimized.
This comment has been minimized.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Nice work, Dan!