Sha256: b384c7218423395b76a820dee3cf9a9eaed5cffd329ad65ea8e5851705b9fe14

Contents?: true

Size: 457 Bytes

Versions: 19

Compression:

Stored size: 457 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 }

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

class ActionController::TestCase
  fixtures :all
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
smarter_listing-0.2.8 test/test_helper.rb
smarter_listing-0.2.7 test/test_helper.rb
smarter_listing-0.2.6 test/test_helper.rb
smarter_listing-0.2.5 test/test_helper.rb
smarter_listing-0.2.4 test/test_helper.rb
smarter_listing-0.2.3 test/test_helper.rb
smarter_listing-0.2.2 test/test_helper.rb
smarter_listing-0.2.1 test/test_helper.rb
smarter_listing-0.2.0 test/test_helper.rb
smarter_listing-0.1.9 test/test_helper.rb
smarter_listing-0.1.8 test/test_helper.rb
smarter_listing-0.1.7 test/test_helper.rb
smarter_listing-0.1.6 test/test_helper.rb
smarter_listing-0.1.5 test/test_helper.rb
smarter_listing-0.1.4 test/test_helper.rb
smarter_listing-0.1.3 test/test_helper.rb
smarter_listing-0.1.2 test/test_helper.rb
smarter_listing-0.1.1 test/test_helper.rb
smarter_listing-0.1.0 test/test_helper.rb