Sha256: 766494195162e0bd2bfac653e2f1b91e13614828747f267bcc9086234707fcd2

Contents?: true

Size: 552 Bytes

Versions: 4

Compression:

Stored size: 552 Bytes

Contents

# Configure Rails Environment
ENV["RAILS_ENV"] = "test"

require File.expand_path("../dummy/config/environment.rb",  __FILE__)
require "rails/test_help"

Rails.backtrace_cleaner.remove_silencers!

# Load support files
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }

ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__)

# Load fixtures from the engine
if ActiveSupport::TestCase.method_defined?(:fixture_path=)
  ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
cache_debugging-0.1.1 test/test_helper.rb
cache_debugging-0.1.0 test/test_helper.rb
cache_debugging-0.0.1 test/test_helper.rb
qor_layout-0.0.5 test/test_helper.rb