Sha256: dfc1f2b4c5df3d7ab98e9d855c81623d0d2100e52f0bcf634d695a8546bce6b8

Contents?: true

Size: 923 Bytes

Versions: 7

Compression:

Stored size: 923 Bytes

Contents

require 'rspec'
require 'rails'
require 'sqlite3'
require 'data_migrate'
require 'pry'
require 'timecop'

RSpec.configure do |config|
  config.mock_with :rspec do |mocks|
    mocks.verify_partial_doubles = true
  end

  config.before(:each) do |example|
    if example.metadata[:no_override]
    else
      if Rails::VERSION::MAJOR == 6
        DataMigrate.configure do |config|
          config.data_migrations_path = "spec/db/6.0"
        end
      elsif Rails::VERSION::MAJOR == 5
        if Rails::VERSION::MINOR == 2
          DataMigrate.configure do |config|
            config.data_migrations_path = "spec/db/data"
          end
        else
          DataMigrate.configure do |config|
            config.data_migrations_path = "spec/db/5.0"
          end
        end
      else
        DataMigrate.configure do |config|
          config.data_migrations_path = "spec/db/5.0"
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
data_migrate-6.0.7 spec/spec_helper.rb
data_migrate-6.0.6 spec/spec_helper.rb
data_migrate-6.0.5 spec/spec_helper.rb
data_migrate-6.0.4.beta spec/spec_helper.rb
data_migrate-6.0.3.beta spec/spec_helper.rb
data_migrate-6.0.1.beta spec/spec_helper.rb
data_migrate-6.0.0.beta spec/spec_helper.rb