Sha256: 42076c41e367b3ea4a2a4e6d631f28315a74abb0c68a69bbc980a1a389441935
Contents?: true
Size: 694 Bytes
Versions: 14
Compression:
Stored size: 694 Bytes
Contents
ENV['RACK_ENV'] ||= 'test' require File.expand_path('../config/environment', __dir__) RSpec.configure do |config| # ActiveRecord::Migration config.before :suite do ActiveRecord::Migration.maintain_test_schema! end if defined?(ActiveRecord) # DatabaseCleaner config.before :suite do DatabaseCleaner.strategy = :transaction DatabaseCleaner.clean_with :truncation end config.around :each do |example| DatabaseCleaner.cleaning { example.run } end # FactoryBot config.include FactoryBot::Syntax::Methods config.before :suite do FactoryBot.find_definitions end end # Test with Airborne Airborne.configure do |config| config.rack_app = Grape::App end
Version data entries
14 entries across 14 versions & 1 rubygems