Sha256: 9f0624aa7dbabc713c0aa25114be7824699a5bd22b8488c2ed3c7cf00fba46de

Contents?: true

Size: 1.12 KB

Versions: 27

Compression:

Stored size: 1.12 KB

Contents

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

# Load Houston
require "dummy/houston"
Rails.application.initialize! unless Rails.application.initialized?

require "rails/test_help"

if ENV["CI"] == "true"
  require "minitest/reporters"
  MiniTest::Reporters.use! [MiniTest::Reporters::DefaultReporter.new,
                            MiniTest::Reporters::JUnitReporter.new]
else
  require "minitest/reporters/turn_reporter"
  MiniTest::Reporters.use! Minitest::Reporters::TurnReporter.new
end

# Filter out Minitest backtrace while allowing backtrace
# from other libraries to be shown.
Minitest.backtrace_filter = Minitest::BacktraceFilter.new

class ActiveSupport::TestCase

  # Load fixtures from the engine
  self.fixture_path = File.expand_path("../fixtures", __FILE__)

  # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
  fixtures :all

  # Add more helper methods to be used by all tests here...

end

require "capybara/rails"

class ActionDispatch::IntegrationTest
  include Capybara::DSL

  # Load fixtures from the engine
  self.fixture_path = File.expand_path("../fixtures", __FILE__)

end

Version data entries

27 entries across 27 versions & 3 rubygems

Version Path
houston-core-0.9.2 templates/new-module/test/test_helper.rb
houston-core-0.9.1 templates/new-module/test/test_helper.rb
houston-core-0.9.0 templates/new-module/test/test_helper.rb
houston-core-0.9.0.rc1 templates/new-module/test/test_helper.rb
houston-core-0.8.4 templates/new-module/test/test_helper.rb
houston-core-0.8.3 templates/new-module/test/test_helper.rb
houston-core-0.8.2 templates/new-module/test/test_helper.rb
houston-core-0.8.1 templates/new-module/test/test_helper.rb
houston-core-0.8.0 templates/new-module/test/test_helper.rb
houston-core-0.8.0.pre2 templates/new-module/test/test_helper.rb
houston-core-0.8.0.pre templates/new-module/test/test_helper.rb
houston-core-0.7.0 templates/new-module/test/test_helper.rb
houston-core-0.7.0.beta4 templates/new-module/test/test_helper.rb
houston-core-0.7.0.beta3 templates/new-module/test/test_helper.rb
houston-conversations-0.1.0 test/test_helper.rb
houston-core-0.7.0.beta2 templates/new-module/test/test_helper.rb
houston-core-0.7.0.beta templates/new-module/test/test_helper.rb
houston-core-0.6.3 templates/new-module/test/test_helper.rb
houston-roadmaps-0.1.0 test/test_helper.rb
houston-core-0.6.2 templates/new-module/test/test_helper.rb