Sha256: eca1ba15e6dbe3e43d8e026fb788a7d9a3889adbac0531dcf3bf84e7469e5cff
Contents?: true
Size: 1.46 KB
Versions: 8
Compression:
Stored size: 1.46 KB
Contents
# This file was generated by the `rspec --init` command. Conventionally, all # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`. # Require this file using `require "spec_helper"` to ensure that it is only # loaded once. # # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration require 'bundler' Bundler.require('default') require 'active_job' require 'jobba' ActiveJob::Base.queue_adapter = :test ActiveJob::Base.logger = ::Logger.new(nil) RSpec.configure do |config| config.run_all_when_everything_filtered = true config.filter_run :focus # Run specs in random order to surface order dependencies. If you find an # order dependency and want to debug it, you can fix the order by providing # the seed, which is printed after each run. # --seed 1234 config.order = 'random' end require 'lev' require 'byebug' require 'transaction_retry' TransactionRetry.apply_activerecord_patch Dir[(File.expand_path('../support', __FILE__)) + ("/**/*.rb")].each { |f| require f } ActiveRecord::Base.establish_connection( adapter: :sqlite3, database: ':memory:', ) ActiveRecord::ConnectionAdapters::SQLiteAdapter = ActiveRecord::ConnectionAdapters::SQLite3Adapter TransactionIsolation.apply_activerecord_patch unless Sprocket.table_exists? ActiveRecord::Schema.define do create_table 'sprockets', force: true do |t| t.integer 'integer_gt_2' t.string 'text_only_letters' end end end I18n.enforce_available_locales = true
Version data entries
8 entries across 8 versions & 1 rubygems