Sha256: fd34d9c597a6651f24f964ad4eca37dee91f1ec71fda132a0489e92daa0f4c46

Contents?: true

Size: 521 Bytes

Versions: 9

Compression:

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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
ominous-0.1.3 test/test_helper.rb
ominous-0.1.2 test/test_helper.rb
ominous-0.1.1 test/test_helper.rb
ominous-0.1.0 test/test_helper.rb
ominous-0.0.5 test/test_helper.rb
ominous-0.0.4 test/test_helper.rb
ominous-0.0.3 test/test_helper.rb
ominous-0.0.2 test/test_helper.rb
ominous-0.0.1 test/test_helper.rb