Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
baldarn committed Aug 28, 2024
1 parent c9c7f20 commit 7744d6c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion test/system/registration_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,15 @@ class RegistrationTest < ApplicationSystemTestCase
visit new_user_registration_url

fill_in 'user_email', with: '[email protected]'
fill_in 'user_first_name', with: 'Name'
fill_in 'user_first_name', with: 'Name'
fill_in 'user_last_name', with: 'Cognome'
fill_in 'club_name', with: 'Club Name'
fill_in 'club_email', with: '[email protected]'
fill_in 'club_address', with: 'via delle vie'
fill_in 'club_postal_code', with: '12345'
fill_in 'club_municipality', with: 'comune'
fill_in 'club_province', with: 'RO'
fill_in 'club_tax_code', with: '123432123'
fill_in 'user_password', with: 'password'
fill_in 'user_password_confirmation', with: 'password'

Expand Down

0 comments on commit 7744d6c

Please sign in to comment.