Sha256: ff83b64ae7acf75bc3a89ce8e69f9202ce54c417e053a51d13adac24a44b41bd

Contents?: true

Size: 665 Bytes

Versions: 4

Compression:

Stored size: 665 Bytes

Contents

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

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"

Rails.backtrace_cleaner.remove_silencers!

# 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__)
end

Version data entries

4 entries across 4 versions & 4 rubygems

Version Path
junctions-0.0.1 test/test_helper.rb
whodunnit-0.0.5 test/test_helper.rb
simple_datatable-0.0.1 test/test_helper.rb
nps_rails-0.0.1 test/test_helper.rb