diff options
| author | mo khan <mo.khan@gmail.com> | 2020-09-16 12:16:56 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-09-16 12:16:56 -0600 |
| commit | 47b673882a84d7683a07b4e366132a80a3ff1313 (patch) | |
| tree | 729efa8b9db3b764c45198ba229684fe202bff0e /spec/spec_helper.rb | |
| parent | 7a6199f2ea4adc239d5bf791e07dd5d93c9744c6 (diff) | |
refactor: Extract shared test context
Diffstat (limited to 'spec/spec_helper.rb')
| -rw-r--r-- | spec/spec_helper.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 19f2cdb..7d513b4 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -15,8 +15,7 @@ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration $LOAD_PATH.unshift(Pathname.pwd.join('lib')) require 'e2e' -require 'support/docker_helper' -require 'support/fixture_file_helper' +Dir["./spec/support/**/*.rb"].sort.each { |f| require f } RSpec.configure do |config| # rspec-expectations config goes here. You can use an alternate |
