Sha256: d9994ff74bf25963d5789aae689059d13b04c9f429c1be0e6c5288a9959398be
Contents?: true
Size: 1.39 KB
Versions: 1
Compression:
Stored size: 1.39 KB
Contents
# Configure Rails Environment ENV["RAILS_ENV"] = "test" require "pry" require "simplecov" SimpleCov.start "rails" require "minitest/reporters" Minitest::Reporters.use!(Minitest::Reporters::DefaultReporter.new) require File.expand_path("../../test/dummy/config/environment.rb", __FILE__) ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)] ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__) require "rails/test_help" require "mocha/mini_test" require "spawnling" Minitest.backtrace_filter = Minitest::BacktraceFilter.new # Load support files Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f } # Load fixtures from the engine if ActiveSupport::TestCase.respond_to?(:fixture_path=) ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__) ActiveSupport::TestCase.fixtures :all end Fogged.test_mode! class ActiveSupport::TestCase fixtures :all def response_json @response_json ||= JSON.parse(response.body, :symbolize_names => true) end def in_a_fork ActiveRecord::Base.connection.disconnect! spawnling = Spawnling.new do ActiveRecord::Base.establish_connection SimpleCov.at_exit {} yield ActiveRecord::Base.connection.disconnect! end Spawnling.wait(spawnling) ensure ActiveRecord::Base.establish_connection end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fogged-0.0.10 | test/test_helper.rb |