Sha256: 550786a6d4452c0467049b1f9eb23635421a4411f1824737197043072f1c7df9
Contents?: true
Size: 809 Bytes
Versions: 2
Compression:
Stored size: 809 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 'rails-controller-testing' require "application_system_test_case" Rails::Controller::Testing.install Rails.backtrace_cleaner.remove_silencers! # Consider setting MT_NO_EXPECTATIONS to not add expectations to Object. # ENV["MT_NO_EXPECTATIONS"] = true class ActionDispatch::IntegrationTest # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. include ActiveRecord::TestFixtures self.fixture_path = File.expand_path('../fixtures', __FILE__) fixtures :all # Add more helper methods to be used by all tests here... register_spec_type /Controller$/, ActionDispatch::IntegrationTest end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
smarter_listing-0.5.0 | test/test_helper.rb |
smarter_listing-0.6.0 | test/test_helper.rb |