Sha256: 619bef700de28459fc9313d9b2c7edd7c48cbd65d235c00a0436902775e59c9b

Contents?: true

Size: 607 Bytes

Versions: 7

Compression:

Stored size: 607 Bytes

Contents

# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
#
require 'chrono_model'

require 'support/connection'
require 'support/matchers/schema'
require 'support/matchers/table'
require 'support/matchers/column'
require 'support/matchers/index'

RSpec.configure do |config|
  config.treat_symbols_as_metadata_keys_with_true_values = true

  config.include(ChronoTest::Matchers::Schema)
  config.include(ChronoTest::Matchers::Table)
  config.include(ChronoTest::Matchers::Column)
  config.include(ChronoTest::Matchers::Index)

  config.before :suite do
    ChronoTest.recreate_database!
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
chrono_model-0.5.2 spec/spec_helper.rb
chrono_model-0.5.1 spec/spec_helper.rb
chrono_model-0.5.0 spec/spec_helper.rb
chrono_model-0.5.0.beta spec/spec_helper.rb
chrono_model-0.4.0 spec/spec_helper.rb
chrono_model-0.3.1 spec/spec_helper.rb
chrono_model-0.3.0 spec/spec_helper.rb