Sha256: 1f1472ab6e85fefb2dba0a9b7d5b3a4b8edea485864c5e11879821ee4bd91ce1

Contents?: true

Size: 535 Bytes

Versions: 8

Compression:

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

require "fileutils"
FileUtils.mkdir_p Rails.root.join("tmp").to_s

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
git_wit-0.0.6 test/test_helper.rb
git_wit-0.0.6.pre test/test_helper.rb
git_wit-0.0.5 test/test_helper.rb
git_wit-0.0.4.pre2 test/test_helper.rb
git_wit-0.0.4.pre test/test_helper.rb
git_wit-0.0.3 test/test_helper.rb
git_wit-0.0.2 test/test_helper.rb
git_wit-0.0.1 test/test_helper.rb