diff options
| -rw-r--r-- | spec/features/stop_areas_spec.rb | 12 | ||||
| -rw-r--r-- | spec/views/companies/show.html.erb_spec.rb | 9 | ||||
| -rw-r--r-- | spec/views/lines/show.html.erb_spec.rb | 8 | ||||
| -rw-r--r-- | spec/views/networks/show.html.erb_spec.rb | 17 |
4 files changed, 22 insertions, 24 deletions
diff --git a/spec/features/stop_areas_spec.rb b/spec/features/stop_areas_spec.rb index a2ed781d1..9d24ad680 100644 --- a/spec/features/stop_areas_spec.rb +++ b/spec/features/stop_areas_spec.rb @@ -39,12 +39,12 @@ describe "StopAreas", :type => :feature do expect(page).to have_content(stop_areas.first.name) end - it "display map" do - visit stop_area_referential_stop_areas_path(stop_area_referential) - # click_link "#{stop_areas.first.name}" - visit stop_area_referential_stop_area_path(stop_area_referential, stop_areas.first) - expect(page).to have_selector("#map.stop_area") - end + # it "display map" do + # visit stop_area_referential_stop_areas_path(stop_area_referential) + # # click_link "#{stop_areas.first.name}" + # visit stop_area_referential_stop_area_path(stop_area_referential, stop_areas.first) + # expect(page).to have_selector("#map.stop_area") + # end end diff --git a/spec/views/companies/show.html.erb_spec.rb b/spec/views/companies/show.html.erb_spec.rb index 6c488e130..f0a8a99d4 100644 --- a/spec/views/companies/show.html.erb_spec.rb +++ b/spec/views/companies/show.html.erb_spec.rb @@ -5,9 +5,9 @@ describe "/companies/show", :type => :view do let!(:company) { assign(:company, create(:company)) } let!(:line_referential) { assign :line_referential, company.line_referential } - it "should render h2 with the company name" do + it "should render h1 with the company name" do render - expect(rendered).to have_selector("h2", :text => Regexp.new(company.name)) + expect(rendered).to have_selector("h1", :text => Regexp.new(company.name)) end # it "should display a map with class 'company'" do @@ -17,13 +17,12 @@ describe "/companies/show", :type => :view do it "should render a link to edit the company" do render - expect(view.content_for(:sidebar)).to have_selector(".actions a[href='#{view.edit_line_referential_company_path(line_referential, company)}']") + expect(rendered).to have_selector("a[href='#{view.edit_line_referential_company_path(line_referential, company)}']") end it "should render a link to remove the company" do render - expect(view.content_for(:sidebar)).to have_selector(".actions a[href='#{view.line_referential_company_path(line_referential, company)}'][class='remove']") + expect(rendered).to have_selector("a[href='#{view.line_referential_company_path(line_referential, company)}']") end end - diff --git a/spec/views/lines/show.html.erb_spec.rb b/spec/views/lines/show.html.erb_spec.rb index 65475e296..939d6bc83 100644 --- a/spec/views/lines/show.html.erb_spec.rb +++ b/spec/views/lines/show.html.erb_spec.rb @@ -12,9 +12,9 @@ describe "/lines/show", :type => :view do allow(view).to receive_messages(current_organisation: referential.organisation) end - it "should render h2 with the line name" do + it "should render h1 with the line name" do render - expect(rendered).to have_selector("h2", :text => Regexp.new(line.name)) + expect(rendered).to have_selector("h1", :text => Regexp.new(line.name)) end # it "should display a map with class 'line'" do @@ -24,12 +24,12 @@ describe "/lines/show", :type => :view do # FIXME #2018 xit "should render a link to edit the line" do render - expect(view.content_for(:sidebar)).to have_selector(".actions a[href='#{view.edit_line_referential_line_path(line_referential, line)}']") + expect(rendered).to have_selector("a[href='#{view.edit_line_referential_line_path(line_referential, line)}']") end it "should render a link to remove the line" do render - expect(view.content_for(:sidebar)).to have_selector(".actions a[href='#{view.line_referential_line_path(line_referential, line)}'][class='remove']") + expect(rendered).to have_selector("a[href='#{view.line_referential_line_path(line_referential, line)}']") end end diff --git a/spec/views/networks/show.html.erb_spec.rb b/spec/views/networks/show.html.erb_spec.rb index e73ab55c3..e613ea948 100644 --- a/spec/views/networks/show.html.erb_spec.rb +++ b/spec/views/networks/show.html.erb_spec.rb @@ -6,25 +6,24 @@ describe "/networks/show", :type => :view do let!(:map) { assign(:map, double(:to_html => '<div id="map"/>'.html_safe)) } let!(:line_referential) { assign :line_referential, network.line_referential } - it "should render h2 with the network name" do + it "should render h1 with the network name" do render - expect(rendered).to have_selector("h2", :text => Regexp.new(network.name)) + expect(rendered).to have_selector("h1", :text => Regexp.new(network.name)) end - it "should display a map with class 'network'" do - render - expect(rendered).to have_selector("#map") - end + # it "should display a map with class 'network'" do + # render + # expect(rendered).to have_selector("#map") + # end it "should render a link to edit the network" do render - expect(view.content_for(:sidebar)).to have_selector(".actions a[href='#{view.edit_line_referential_network_path(line_referential, network)}']") + expect(rendered).to have_selector("a[href='#{view.edit_line_referential_network_path(line_referential, network)}']") end it "should render a link to remove the network" do render - expect(view.content_for(:sidebar)).to have_selector(".actions a[href='#{view.line_referential_network_path(line_referential, network)}'][class='remove']") + expect(rendered).to have_selector("a[href='#{view.line_referential_network_path(line_referential, network)}']") end end - |
