Sha256: ec4ef5388606c688f6c0f5200028b9a7db83eba530418f8f3e6364282afe9878

Contents?: true

Size: 608 Bytes

Versions: 11

Compression:

Stored size: 608 Bytes

Contents

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

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

Rails.backtrace_cleaner.remove_silencers!

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

Dir[Rails.root.join("test/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

11 entries across 11 versions & 1 rubygems

Version Path
foreign_office-0.17.6 test/test_helper.rb
foreign_office-0.17.5 test/test_helper.rb
foreign_office-0.17.4 test/test_helper.rb
foreign_office-0.17.3 test/test_helper.rb
foreign_office-0.17.2 test/test_helper.rb
foreign_office-0.17.1 test/test_helper.rb
foreign_office-0.17.0 test/test_helper.rb
foreign_office-0.16.6 test/test_helper.rb
foreign_office-0.16.5 test/test_helper.rb
foreign_office-0.16.4 test/test_helper.rb
foreign_office-0.16.3 test/test_helper.rb