Sha256: 0da415b0940b1f1b45d50baeccf5a76291f6dc47c18d97ac074ee3d371328edf

Contents?: true

Size: 530 Bytes

Versions: 4

Compression:

Stored size: 530 Bytes

Contents

# Configure Rails Environment
ENV["RAILS_ENV"] = "test"
#ENV["RAILS_ROOT"] = File.expand_path("../dummy",  __FILE__)

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 & 2 rubygems

Version Path
stayind-manage-0.0.2 test/test_helper.rb
stayind-order-0.0.2 test/test_helper.rb
stayind-manage-0.0.1 test/test_helper.rb
stayind-order-0.0.1 test/test_helper.rb