# This file was generated by the `rspec --init` command. Conventionally, all # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`. # Require this file using `require "spec_helper.rb"` to ensure that it is only # loaded once. # # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration require 'rubygems' require 'bundler/setup' MINIMUM_COVERAGE = 81 if ENV['COVERAGE'] require 'simplecov' require 'coveralls' Coveralls.wear! SimpleCov.formatter = Coveralls::SimpleCov::Formatter SimpleCov.start do add_filter '/vendor/' add_filter '/spec/' add_group 'lib', 'lib' end SimpleCov.at_exit do SimpleCov.result.format! percent = SimpleCov.result.covered_percent unless percent >= MINIMUM_COVERAGE puts "Coverage must be above #{MINIMUM_COVERAGE}%. It is #{"%.2f" % percent}%" Kernel.exit(1) end end end require 'dependent_restrict' DB_FILE = 'tmp/test_db' FileUtils.mkdir_p File.dirname(DB_FILE) FileUtils.rm_f DB_FILE ActiveRecord::Base.establish_connection :adapter => 'sqlite3', :database => DB_FILE load 'spec/schema.rb'