Sha256: 9ebfd561778fd0ef4fa143efadb9444ef509496d43a2077edb258c016c33ec9b

Contents?: true

Size: 1021 Bytes

Versions: 3

Compression:

Stored size: 1021 Bytes

Contents

# This file is copied to spec/ when you run 'rails generate rspec:install'
ENV["RAILS_ENV"] ||= 'test'

if RUBY_ENGINE == 'rbx'
  require "codeclimate-test-reporter"
  CodeClimate::TestReporter.start
end

require Pathname(__FILE__).dirname.join("dummy/config/environment")

require 'rspec/rails'
require 'database_cleaner'
require 'capybara/rails'
require 'generator_spec'

begin
  require 'byebug'
rescue LoadError
end

Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }

RSpec.configure do |config|
  config.order = "random"
  config.example_status_persistence_file_path = "tmp/examples.txt"

  config.before(:suite) do
    conn = rom.gateways[:default].connection

    DatabaseCleaner[:sequel, connection: conn].strategy = :transaction
    DatabaseCleaner[:sequel, connection: conn].clean_with(:truncation)
  end

  config.around(:each) do |example|
    conn = rom.gateways[:default].connection

    DatabaseCleaner[:sequel, connection: conn].cleaning { example.run }
  end
end

def rom
  ROM.env
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rom-rails-0.9.0.beta1 spec/spec_helper.rb
rom-rails-0.8.0 spec/spec_helper.rb
rom-rails-0.7.0 spec/spec_helper.rb