Sha256: b59f9f428464b27cf421eccea3b3e1c1f9c1115b6c1c7b82f6b78f767ba39b2f
Contents?: true
Size: 581 Bytes
Versions: 3
Compression:
Stored size: 581 Bytes
Contents
require 'simplecov' SimpleCov.start RSpec.configure do |config| config.requires = %w[m2m_fast_insert sqlite3] ActiveRecord::Base.establish_connection :adapter => 'sqlite3', :database => ':memory:' # Requires supporting ruby files with custom matchers and macros, etc, # in spec/support/ and its subdirectories. Dir.glob(File.expand_path('../support/**/*.rb', __FILE__)).each { |file| require file } config.run_all_when_everything_filtered = true config.filter_run :focus config.color = true config.expect_with(:rspec) { |c| c.syntax = [:should, :expect] } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
m2m_fast_insert-0.3.0 | spec/spec_helper.rb |
m2m_fast_insert-0.2.1 | spec/spec_helper.rb |
m2m_fast_insert-0.2.0 | spec/spec_helper.rb |