mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
18 lines
398 B
Ruby
18 lines
398 B
Ruby
require_relative 'external_request'
|
|
|
|
RSpec.configure do |config|
|
|
|
|
config.before(:suite) do
|
|
if ENV['OSEM_FACTORY_LINT'] != 'false'
|
|
DatabaseCleaner.strategy = :transaction
|
|
DatabaseCleaner.clean_with(:truncation)
|
|
begin
|
|
DatabaseCleaner.start
|
|
mock_commercial_request
|
|
FactoryGirl.lint
|
|
ensure
|
|
DatabaseCleaner.clean
|
|
end
|
|
end
|
|
end
|
|
end
|