Sha256: 1fb88173929f7d92ab52dc589955bcad11fc531cd66b5b398069bb334e2c2c2c

Contents?: true

Size: 598 Bytes

Versions: 19

Compression:

Stored size: 598 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

class ActiveSupport::TestCase
  fixtures :all
end

class ActionController::TestCase
  include Edgarj::ControllerSupporter
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
edgarj-4.06.03 test/test_helper.rb
edgarj-4.06.02 test/test_helper.rb
edgarj-4.06.01 test/test_helper.rb
edgarj-4.06.00 test/test_helper.rb
edgarj-4.05.04 test/test_helper.rb
edgarj-4.05.03 test/test_helper.rb
edgarj-4.05.02 test/test_helper.rb
edgarj-4.05.01 test/test_helper.rb
edgarj-4.05.00 test/test_helper.rb
edgarj-4.04.01 test/test_helper.rb
edgarj-4.04.00 test/test_helper.rb
edgarj-4.03.00 test/test_helper.rb
edgarj-4.02.00 test/test_helper.rb
edgarj-4.01.01 test/test_helper.rb
edgarj-4.01.00 test/test_helper.rb
edgarj-4.00.04 test/test_helper.rb
edgarj-4.00.03 test/test_helper.rb
edgarj-4.00.02 test/test_helper.rb
edgarj-4.00.01 test/test_helper.rb