submit form directly in tests
This commit is contained in:
parent
2e66e5807a
commit
e31ca46f87
2 changed files with 2 additions and 3 deletions
|
|
@ -30,5 +30,5 @@
|
|||
%a
|
||||
= number_to_currency @total_amount_to_pay
|
||||
.form-group
|
||||
= f.submit "Charge Card", class: "btn btn-primary", id: "charge_card"
|
||||
= f.submit "Charge Card", class: "btn btn-primary"
|
||||
= link_to "Cancel", conference_conference_registrations_path, class: "btn btn-danger"
|
||||
|
|
|
|||
|
|
@ -38,8 +38,7 @@ feature Registration do
|
|||
select Date.current.year + 2, from: 'expiration_year'
|
||||
fill_in 'card_verification_value', with: '123'
|
||||
fill_in 'credit_card_number', with: '4242424242424242'
|
||||
|
||||
click_button 'Charge Card'
|
||||
submit_form
|
||||
|
||||
expect(current_path).to eq(conference_conference_registrations_path(conference.short_title))
|
||||
payment = Payment.where(user_id: participant.id, conference_id: conference.id).first
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue