Sha256: af820df96959cdd51cf5ea8ce14ba850e9b5ee32b9d04121971d4406f54818c7

Contents?: true

Size: 565 Bytes

Versions: 9

Compression:

Stored size: 565 Bytes

Contents

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

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

Rails.backtrace_cleaner.remove_silencers!

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

# Load fixtures from the engine
ActiveSupport::TestCase.fixture_path = File.expand_path('../fixtures', __FILE__)

class ActionController::TestCase
  ActiveRecord::Migration.maintain_test_schema!
  fixtures :all
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
smarter_listing-0.4.2 test/test_helper.rb
smarter_listing-0.4.2.pre test/test_helper.rb
smarter_listing-0.4.0 test/test_helper.rb
smarter_listing-0.3.7 test/test_helper.rb
smarter_listing-0.3.6 test/test_helper.rb
smarter_listing-0.3.5 test/test_helper.rb
smarter_listing-0.3.4 test/test_helper.rb
smarter_listing-0.3.3 test/test_helper.rb
smarter_listing-0.3.2 test/test_helper.rb