Commit f385c7212ebe4a69af05335f223117b740ff9560

Authored by Dmitriy Zaporozhets
1 parent c75fc9c7

remove unexisting stubs

Showing 1 changed file with 1 additions and 8 deletions   Show diff stats
features/support/env.rb
@@ -9,17 +9,12 @@ require 'spinach/capybara' @@ -9,17 +9,12 @@ require 'spinach/capybara'
9 require 'sidekiq/testing/inline' 9 require 'sidekiq/testing/inline'
10 10
11 11
12 -%w(gitolite_stub stubbed_repository valid_commit).each do |f| 12 +%w(stubbed_repository valid_commit).each do |f|
13 require Rails.root.join('spec', 'support', f) 13 require Rails.root.join('spec', 'support', f)
14 end 14 end
15 15
16 Dir["#{Rails.root}/features/steps/shared/*.rb"].each {|file| require file} 16 Dir["#{Rails.root}/features/steps/shared/*.rb"].each {|file| require file}
17 17
18 -#  
19 -# Stub gitolite  
20 -#  
21 -include GitoliteStub  
22 -  
23 WebMock.allow_net_connect! 18 WebMock.allow_net_connect!
24 # 19 #
25 # JS driver 20 # JS driver
@@ -49,6 +44,4 @@ Spinach.hooks.before_run do @@ -49,6 +44,4 @@ Spinach.hooks.before_run do
49 RSpec::Mocks::setup self 44 RSpec::Mocks::setup self
50 45
51 include FactoryGirl::Syntax::Methods 46 include FactoryGirl::Syntax::Methods
52 -  
53 - stub_gitolite!  
54 end 47 end