Sha256: ee68697af6fdaf01c2ceb6250f02bc7403e6c5a37dfcdf933cca16cc2671a9ba

Contents?: true

Size: 915 Bytes

Versions: 27

Compression:

Stored size: 915 Bytes

Contents

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

require File.expand_path("../../test/dummy/config/environment.rb",  __FILE__)
ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)]
ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__)
require "rails/test_help"

require 'pry'

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

# Load support files
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }

# Load fixtures from the engine
if ActiveSupport::TestCase.respond_to?(:fixture_path=)
  ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
  ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
  ActiveSupport::TestCase.fixtures :all
end

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
bot-0.0.46 test/test_helper.rb
bot-0.0.45 test/test_helper.rb
bot-0.0.44 test/test_helper.rb
bot-0.0.43 test/test_helper.rb
bot-0.0.42 test/test_helper.rb
bot-0.0.41 test/test_helper.rb
bot-0.0.40 test/test_helper.rb
bot-0.0.39 test/test_helper.rb
bot-0.0.38 test/test_helper.rb
bot-0.0.37 test/test_helper.rb
bot-0.0.35 test/test_helper.rb
bot-0.0.34 test/test_helper.rb
bot-0.0.33 test/test_helper.rb
bot-0.0.32 test/test_helper.rb
bot-0.0.31 test/test_helper.rb
bot-0.0.30 test/test_helper.rb
bot-0.0.29 test/test_helper.rb
bot-0.0.28 test/test_helper.rb
bot-0.0.27 test/test_helper.rb
bot-0.0.26 test/test_helper.rb