Sha256: c5369d6a55ab91836c6317499a110f514e67d5b8d856acbf412bd8bd9315b29a

Contents?: true

Size: 637 Bytes

Versions: 3

Compression:

Stored size: 637 Bytes

Contents

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

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

require File.expand_path("../factories.rb",  __FILE__)
FactoryGirl.find_definitions

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

3 entries across 3 versions & 1 rubygems

Version Path
qor_cache-0.0.4 test/test_helper.rb
qor_cache-0.0.3 test/test_helper.rb
qor_cache-0.0.2 test/test_helper.rb