aboutsummaryrefslogtreecommitdiffstats
path: root/spec/features/networks_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/networks_spec.rb')
-rw-r--r--spec/features/networks_spec.rb12
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; }')