Sha256: 569ac9aac0a9530340214978bae6592a115aadf666fec256b0478af8098ef95d

Contents?: true

Size: 471 Bytes

Versions: 4

Compression:

Stored size: 471 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
if ActiveSupport::TestCase.method_defined?(:fixture_path=)
  ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
end


Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
current_user-0.2.1 test/test_helper.rb
current_user-0.2.0 test/test_helper.rb
current_user-0.1.0 test/test_helper.rb
current_user-0.0.1 test/test_helper.rb