Commit f385c7212ebe4a69af05335f223117b740ff9560
1 parent
c75fc9c7
Exists in
master
and in
4 other branches
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 | 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 | 13 | require Rails.root.join('spec', 'support', f) |
14 | 14 | end |
15 | 15 | |
16 | 16 | Dir["#{Rails.root}/features/steps/shared/*.rb"].each {|file| require file} |
17 | 17 | |
18 | -# | |
19 | -# Stub gitolite | |
20 | -# | |
21 | -include GitoliteStub | |
22 | - | |
23 | 18 | WebMock.allow_net_connect! |
24 | 19 | # |
25 | 20 | # JS driver |
... | ... | @@ -49,6 +44,4 @@ Spinach.hooks.before_run do |
49 | 44 | RSpec::Mocks::setup self |
50 | 45 | |
51 | 46 | include FactoryGirl::Syntax::Methods |
52 | - | |
53 | - stub_gitolite! | |
54 | 47 | end | ... | ... |