Sha256: f282f2d35dbda5bbe08fe9e96552785f69240d6c51558acbdc7f2c7a31dca570
Contents?: true
Size: 1 KB
Versions: 4
Compression:
Stored size: 1 KB
Contents
begin require 'simplecov' SimpleCov.start do add_filter 'spec' end rescue LoadError end require 'wisper' require 'active_record' puts "Using ActiveRecord #{ActiveRecord::VERSION::STRING}" adapter = RUBY_PLATFORM == "java" ? 'jdbcsqlite3' : 'sqlite3' ActiveRecord::Base.establish_connection(:adapter => adapter, :database => File.dirname(__FILE__) + "/db.sqlite3") load File.dirname(__FILE__) + '/support/schema.rb' require 'support/models' require 'wisper/activerecord' RSpec.configure do |config| config.filter_run :focus config.run_all_when_everything_filtered = true if config.files_to_run.one? config.full_backtrace = true config.default_formatter = 'doc' end config.profile_examples = 10 config.order = :random Kernel.srand config.seed config.expect_with :rspec do |expectations| expectations.syntax = :expect end config.mock_with :rspec do |mocks| mocks.syntax = :expect mocks.verify_partial_doubles = true end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
wisper-activerecord-1.0.0 | spec/spec_helper.rb |
wisper-activerecord-0.3.0 | spec/spec_helper.rb |
wisper-activerecord-0.2.0 | spec/spec_helper.rb |
wisper-activerecord-0.1.0 | spec/spec_helper.rb |