Sha256: 6b70cf2bf495c3f084072cedb5463398fc5a55231ea525899c31eb16269a8b64
Contents?: true
Size: 1.42 KB
Versions: 3
Compression:
Stored size: 1.42 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 include ActiveJob::TestHelper 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fogged-0.0.13 | test/test_helper.rb |
fogged-0.0.12 | test/test_helper.rb |
fogged-0.0.11 | test/test_helper.rb |