adapting the specs
This commit is contained in:
parent
9553dae7bd
commit
7eee9beed7
7 changed files with 12 additions and 12 deletions
|
@ -132,7 +132,7 @@ en:
|
||||||
# parcelles_agricoles_empty:
|
# parcelles_agricoles_empty:
|
||||||
# one: "Aucune parcelle agricole sur la zone sélectionnée"
|
# one: "Aucune parcelle agricole sur la zone sélectionnée"
|
||||||
# other: "Aucune parcelle agricole sur les zones sélectionnées"
|
# other: "Aucune parcelle agricole sur les zones sélectionnées"
|
||||||
not_an_integer: "must be an integer (without any digit after the comma)"
|
not_an_integer: "must be an integer (without decimal)"
|
||||||
blank: "can't be blank"
|
blank: "can't be blank"
|
||||||
|
|
||||||
time:
|
time:
|
||||||
|
|
|
@ -56,7 +56,7 @@ describe Users::ProfilController, type: :controller do
|
||||||
end
|
end
|
||||||
|
|
||||||
it { expect(response).to redirect_to(profil_path) }
|
it { expect(response).to redirect_to(profil_path) }
|
||||||
it { expect(flash.alert).to eq(['Email invalide']) }
|
it { expect(flash.alert).to eq(['Courriel invalide']) }
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when the user has an instructeur role' do
|
context 'when the user has an instructeur role' do
|
||||||
|
|
|
@ -62,7 +62,7 @@ describe Users::SessionsController, type: :controller do
|
||||||
subject
|
subject
|
||||||
|
|
||||||
expect(response).to render_template(:new)
|
expect(response).to render_template(:new)
|
||||||
expect(flash.alert).to eq(I18n.t('devise.failure.invalid'))
|
expect(flash.alert).to eq('Courriel ou mot de passe incorrect.')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -60,7 +60,7 @@ feature 'Signin in:' do
|
||||||
click_on 'Connexion'
|
click_on 'Connexion'
|
||||||
|
|
||||||
sign_in_with user.email, password
|
sign_in_with user.email, password
|
||||||
expect(page).to have_content 'Vous devez confirmer votre adresse email pour continuer'
|
expect(page).to have_content('Vous devez confirmer votre compte par courriel.')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -41,7 +41,7 @@ feature 'Invitations' do
|
||||||
# Confirm the account
|
# Confirm the account
|
||||||
# (The user should be redirected to the dossier they was invited on)
|
# (The user should be redirected to the dossier they was invited on)
|
||||||
click_confirmation_link_for invite.email
|
click_confirmation_link_for invite.email
|
||||||
expect(page).to have_content('Votre compte a été activé')
|
expect(page).to have_content('Votre compte a bien été confirmé.')
|
||||||
expect(page).to have_current_path(brouillon_dossier_path(dossier))
|
expect(page).to have_current_path(brouillon_dossier_path(dossier))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -13,7 +13,7 @@ feature 'Managing password:' do
|
||||||
perform_enqueued_jobs do
|
perform_enqueued_jobs do
|
||||||
click_on 'Réinitialiser'
|
click_on 'Réinitialiser'
|
||||||
end
|
end
|
||||||
expect(page).to have_content 'vous allez recevoir un lien de réinitialisation par email'
|
expect(page).to have_content('Si votre courriel existe dans notre base de données, vous recevrez un lien vous permettant de récupérer votre mot de passe.')
|
||||||
|
|
||||||
click_reset_password_link_for user.email
|
click_reset_password_link_for user.email
|
||||||
expect(page).to have_content 'Changement de mot de passe'
|
expect(page).to have_content 'Changement de mot de passe'
|
||||||
|
@ -21,7 +21,7 @@ feature 'Managing password:' do
|
||||||
fill_in 'user_password', with: new_password
|
fill_in 'user_password', with: new_password
|
||||||
fill_in 'user_password_confirmation', with: new_password
|
fill_in 'user_password_confirmation', with: new_password
|
||||||
click_on 'Changer le mot de passe'
|
click_on 'Changer le mot de passe'
|
||||||
expect(page).to have_content('Votre mot de passe a été changé avec succès')
|
expect(page).to have_content('Votre mot de passe a bien été modifié.')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ feature 'Managing password:' do
|
||||||
perform_enqueued_jobs do
|
perform_enqueued_jobs do
|
||||||
click_on 'Réinitialiser'
|
click_on 'Réinitialiser'
|
||||||
end
|
end
|
||||||
expect(page).to have_content 'vous allez recevoir un lien de réinitialisation par email'
|
expect(page).to have_content('Si votre courriel existe dans notre base de données, vous recevrez un lien vous permettant de récupérer votre mot de passe.')
|
||||||
|
|
||||||
click_reset_password_link_for user.email
|
click_reset_password_link_for user.email
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ feature 'Managing password:' do
|
||||||
fill_in 'user_password', with: new_password
|
fill_in 'user_password', with: new_password
|
||||||
fill_in 'user_password_confirmation', with: new_password
|
fill_in 'user_password_confirmation', with: new_password
|
||||||
click_on 'Changer le mot de passe'
|
click_on 'Changer le mot de passe'
|
||||||
expect(page).to have_content('Votre mot de passe a été changé avec succès')
|
expect(page).to have_content('Votre mot de passe a bien été modifié.')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -10,7 +10,7 @@ feature 'Signing up:' do
|
||||||
expect(page).to have_content "nous avons besoin de vérifier votre adresse #{user_email}"
|
expect(page).to have_content "nous avons besoin de vérifier votre adresse #{user_email}"
|
||||||
|
|
||||||
click_confirmation_link_for user_email
|
click_confirmation_link_for user_email
|
||||||
expect(page).to have_content 'Votre compte a été activé'
|
expect(page).to have_content('Votre compte a bien été confirmé.')
|
||||||
expect(page).to have_current_path dossiers_path
|
expect(page).to have_current_path dossiers_path
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -80,7 +80,7 @@ feature 'Signing up:' do
|
||||||
# After confirmation, the user is redirected to the procedure they were initially starting
|
# After confirmation, the user is redirected to the procedure they were initially starting
|
||||||
# (even when confirming the account in another browser).
|
# (even when confirming the account in another browser).
|
||||||
expect(page).to have_current_path(commencer_path(path: procedure.path))
|
expect(page).to have_current_path(commencer_path(path: procedure.path))
|
||||||
expect(page).to have_content 'Votre compte a été activé'
|
expect(page).to have_content I18n.t('devise.confirmations.confirmed')
|
||||||
click_on 'Commencer la démarche'
|
click_on 'Commencer la démarche'
|
||||||
|
|
||||||
expect(page).to have_current_path identite_dossier_path(procedure.reload.dossiers.last)
|
expect(page).to have_current_path identite_dossier_path(procedure.reload.dossiers.last)
|
||||||
|
@ -112,7 +112,7 @@ feature 'Signing up:' do
|
||||||
# After confirmation, the user is redirected to the procedure they were initially starting
|
# After confirmation, the user is redirected to the procedure they were initially starting
|
||||||
# (even when confirming the account in another browser).
|
# (even when confirming the account in another browser).
|
||||||
expect(page).to have_current_path(commencer_path(path: procedure.path))
|
expect(page).to have_current_path(commencer_path(path: procedure.path))
|
||||||
expect(page).to have_content 'Votre compte a été activé'
|
expect(page).to have_content I18n.t('devise.confirmations.confirmed')
|
||||||
expect(page).to have_content 'Commencer la démarche'
|
expect(page).to have_content 'Commencer la démarche'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue