diff options
| author | Zakaria BOUZIANE | 2015-02-17 18:01:48 +0100 | 
|---|---|---|
| committer | Zakaria BOUZIANE | 2015-02-17 18:01:48 +0100 | 
| commit | ad74d12ada2bbe2fe961424a3ce529f28cc157da (patch) | |
| tree | 49371deb59941be5582b1c4311791fcfc940d531 /spec/features/networks_spec.rb | |
| parent | 22a0f867d596ff869735eac3f5c5b1028109e813 (diff) | |
| download | chouette-core-ad74d12ada2bbe2fe961424a3ce529f28cc157da.tar.bz2 | |
Upgrading FactoryGirl to V4.5.0
Diffstat (limited to 'spec/features/networks_spec.rb')
| -rw-r--r-- | spec/features/networks_spec.rb | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/spec/features/networks_spec.rb b/spec/features/networks_spec.rb index ec65209eb..c2433f04e 100644 --- a/spec/features/networks_spec.rb +++ b/spec/features/networks_spec.rb @@ -4,7 +4,7 @@ require 'spec_helper'  describe "Networks", :type => :feature do    login_user -  let!(:networks) { Array.new(2) { Factory(:network) } } +  let!(:networks) { Array.new(2) { create(:network) } }    subject { networks.first }    describe "list" do @@ -18,14 +18,14 @@ describe "Networks", :type => :feature do    describe "show" do            it "display network" do -      allow(subject).to receive(:stop_areas).and_return(Array.new(2) { Factory(:stop_area) }) +      allow(subject).to receive(:stop_areas).and_return(Array.new(2) { create(:stop_area) })        visit referential_networks_path(referential)        click_link "#{networks.first.name}"        expect(page).to have_content(networks.first.name)      end      it "display map" do -      allow(subject).to receive(:stop_areas).and_return(Array.new(2) { Factory(:stop_area) }) +      allow(subject).to receive(:stop_areas).and_return(Array.new(2) { create(:stop_area) })        visit referential_networks_path(referential)        click_link "#{networks.first.name}"        expect(page).to have_selector("#map.network") @@ -35,7 +35,7 @@ describe "Networks", :type => :feature do    describe "new" do            it "creates network and return to show" do -      allow(subject).to receive(:stop_areas).and_return(Array.new(2) { Factory(:stop_area) }) +      allow(subject).to receive(:stop_areas).and_return(Array.new(2) { create(:stop_area) })        visit referential_networks_path(referential)        click_link "Ajouter un réseau"        fill_in "network_name", :with => "Network 1" @@ -48,7 +48,7 @@ describe "Networks", :type => :feature do    describe "edit and return to show" do            it "edit network" do -      allow(subject).to receive(:stop_areas).and_return(Array.new(2) { Factory(:stop_area) }) +      allow(subject).to receive(:stop_areas).and_return(Array.new(2) { create(:stop_area) })        visit referential_network_path(referential, subject)        click_link "Modifier ce réseau"        fill_in "network_name", :with => "Network Modified" @@ -60,7 +60,7 @@ describe "Networks", :type => :feature do    # describe "delete", :js => true do          #   it "delete network and return to the list" do -  #     subject.stub(:stop_areas).and_return(Array.new(2) { Factory(:stop_area) })      +  #     subject.stub(:stop_areas).and_return(Array.new(2) { create(:stop_area) })         #     visit referential_network_path(referential, subject)    #     click_link "Supprimer ce réseau"    #     page.evaluate_script('window.confirm = function() { return true; }') | 
