Sha256: 8731a39c6bbf893fe8b809f69a500026d4fa1e8427d8746d076959472ef75c34

Contents?: true

Size: 586 Bytes

Versions: 6

Compression:

Stored size: 586 Bytes

Contents

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

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

Rails.backtrace_cleaner.remove_silencers!

ActiveSupport.test_order = :random if ActiveSupport.respond_to?(:test_order=)

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

# 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

6 entries across 6 versions & 1 rubygems

Version Path
archiving-0.4.4 test/test_helper.rb
archiving-0.4.3 test/test_helper.rb
archiving-0.4.1 test/test_helper.rb
archiving-0.4.0 test/test_helper.rb
archiving-0.3.1 test/test_helper.rb
archiving-0.3.0 test/test_helper.rb