Sha256: 00115087a2447389d96e47039e9a2b40e1187ec6e50cdbf3e5ceac125f5ab0d9

Contents?: true

Size: 795 Bytes

Versions: 10

Compression:

Stored size: 795 Bytes

Contents

# Configure Rails Environment
ENV["RAILS_ENV"] = "test"

require File.expand_path("../dummy/config/environment.rb",  __FILE__)
require "rails/test_help"

require 'pry'
require 'minitest/reporters'
Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new

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

ECB = ExpressTemplates::Components::Base
ETC = ExpressTemplates::Components
ET = ExpressTemplates
Interpolator = ExpressTemplates::Interpolator

Tag = ExpressTemplates::Markup::Tag

ENV["ET_NO_INDENT_MARKUP"] = 'true'

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
express_admin-1.2.1 vendor/gems/express_templates/test/test_helper.rb
express_admin-1.2.0 vendor/gems/express_templates/test/test_helper.rb
express_templates-0.5.0 test/test_helper.rb
express_templates-0.4.2 test/test_helper.rb
express_templates-0.4.1 test/test_helper.rb
express_templates-0.4.0 test/test_helper.rb
express_templates-0.3.6 test/test_helper.rb
express_templates-0.3.5 test/test_helper.rb
express_templates-0.3.4 test/test_helper.rb
express_templates-0.3.2 test/test_helper.rb