13 lines
208 B
Ruby
13 lines
208 B
Ruby
|
|
require_relative 'external_request'
|
||
|
|
|
||
|
|
RSpec.configure do |config|
|
||
|
|
|
||
|
|
config.before(:suite) do
|
||
|
|
if ENV['OSEM_FACTORY_LINT'] != 'false'
|
||
|
|
mock_commercial_request
|
||
|
|
FactoryGirl.lint
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
end
|