diff options
Diffstat (limited to 'spec/features/lines_spec.rb')
| -rw-r--r-- | spec/features/lines_spec.rb | 23 | 
1 files changed, 12 insertions, 11 deletions
| diff --git a/spec/features/lines_spec.rb b/spec/features/lines_spec.rb index 2a442bd2f..f176e34fe 100644 --- a/spec/features/lines_spec.rb +++ b/spec/features/lines_spec.rb @@ -1,7 +1,8 @@ +# coding: utf-8  describe "Lines", type: :feature do    login_user -  let(:line_referential) { create :line_referential } +  let(:line_referential) { create :line_referential, member: @user.organisation }    let!(:network) { create(:network) }    let!(:company) { create(:company) }    let!(:lines) { Array.new(2) { create :line_with_stop_areas, network: network, company: company, line_referential: line_referential } } @@ -60,22 +61,22 @@ describe "Lines", type: :feature do      #   it "creates line and return to show" do      #     visit line_referential_lines_path(line_referential)      #     click_link "Ajouter une ligne" -    #     fill_in "line_name", :with => "Line 1" -    #     fill_in "Numéro d'enregistrement", :with => "1" -    #     fill_in "Identifiant Neptune", :with => "chouette:test:Line:999" +    #     fill_in "line_name", with: "Line 1" +    #     fill_in "Numéro d'enregistrement", with: "1" +    #     fill_in "Identifiant Neptune", with: "chouette:test:Line:999"      #     click_button("Créer ligne")      #     expect(page).to have_content("Line 1")      #   end      # end      # Fixme #1780 -    # describe "new with group of line", :js => true do +    # describe "new with group of line", truncation: true do      #   it "creates line and return to show" do      #     visit new_line_referential_line_path(line_referential) -    #     fill_in "line_name", :with => "Line 1" -    #     fill_in "Numéro d'enregistrement", :with => "1" -    #     fill_in "Identifiant Neptune", :with => "test:Line:999" -    #     fill_in_token_input('line_group_of_line_tokens', :with => "#{group_of_line.name}") +    #     fill_in "line_name", with: "Line 1" +    #     fill_in "Numéro d'enregistrement", with: "1" +    #     fill_in "Identifiant Neptune", with: "test:Line:999" +    #     fill_in_token_input('line_group_of_line_tokens', with: "#{group_of_line.name}")      #     find_button("Créer ligne").trigger("click")      #     expect(page).to have_text("Line 1")      #     expect(page).to have_text("#{group_of_line.name}") @@ -87,8 +88,8 @@ describe "Lines", type: :feature do      #   it "edit line" do      #     visit line_referential_line_path(line_referential, subject)      #     click_link "Editer cette ligne" -    #     fill_in "line_name", :with => "Line Modified" -    #     fill_in "Numéro d'enregistrement", :with => "test-1" +    #     fill_in "line_name", with: "Line Modified" +    #     fill_in "Numéro d'enregistrement", with: "test-1"      #     click_button("Editer ligne")      #     expect(page).to have_content("Line Modified")      #   end | 
