From 46211816ed50119e3aff35a28e0ec8dbdfd7681a Mon Sep 17 00:00:00 2001 From: Tanguy PATTE Date: Thu, 24 Sep 2015 12:04:44 +0200 Subject: [PATCH] fix tests --- .../users/recapitulatif/show.html.haml_spec.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/spec/views/users/recapitulatif/show.html.haml_spec.rb b/spec/views/users/recapitulatif/show.html.haml_spec.rb index 3db5d2a0a..61bfb3093 100644 --- a/spec/views/users/recapitulatif/show.html.haml_spec.rb +++ b/spec/views/users/recapitulatif/show.html.haml_spec.rb @@ -1,7 +1,7 @@ require 'spec_helper' describe 'users/recapitulatif/show.html.haml', type: :view do - let(:dossier) { create(:dossier, :with_entreprise, :with_procedure) } + let(:dossier) { create(:dossier, :with_entreprise, :with_procedure, :with_user) } let(:dossier_id) { dossier.id } before do @@ -10,33 +10,33 @@ describe 'users/recapitulatif/show.html.haml', type: :view do assign(:commentaires, dossier.commentaires) render end - + context 'sur la rendered recapitulative' do it 'la section infos dossier est présente' do expect(rendered).to have_selector('#infos_dossier') end - + it 'le flux de commentaire est présent' do expect(rendered).to have_selector('#commentaires_flux') end - + it 'le numéro de dossier est présent' do expect(rendered).to have_selector('#dossier_id') expect(rendered).to have_content(dossier_id) end - + context 'les liens de modifications' do context 'lien description' do it 'le lien vers description est présent' do expect(rendered).to have_css('#maj_infos') end - + it 'le lien vers description est correct' do expect(rendered).to have_selector("a[id=maj_infos][href='/users/dossiers/#{dossier_id}/description?back_url=recapitulatif']") end end end - + # context 'visibilité Félicitation' do # it 'Est affiché quand l\'on vient de la rendered description hors modification' do # expect(rendered).to have_content('Félicitation')