demarches-normaliennes/spec/views/recapitulatif/show.html.haml_spec.rb
2015-08-25 16:33:55 +02:00

12 lines
397 B
Ruby

require 'spec_helper'
describe 'recapitulatif/show.html.haml', type: :view do
let(:dossier) { create(:dossier, :with_entreprise) }
before do
assign(:dossier, dossier.decorate)
assign(:commentaires, dossier.commentaires)
render
end
it { expect(rendered).to have_content("Contacter l'administration") }
it { expect(rendered).to include(dossier.mailto.gsub('&','&')) }
end