Sha256: 26560fce92bdb92c90d8f445305346c1ef5034d03c4913fb71e08dac236f3aa4

Contents?: true

Size: 707 Bytes

Versions: 5

Compression:

Stored size: 707 Bytes

Contents

ENV['RAILS_ENV'] ||= 'test'
require File.expand_path('../../config/environment', __FILE__)
require 'rails/test_help'
require "capybara/rails"
require "active_support/testing/setup_and_teardown"
require "sidekiq/testing"
require 'minitest/mock'
require "mocha/mini_test"
require "minitest/rails/capybara"
require "minitest/reporters"

Sidekiq::Testing.fake!
Minitest::Reporters.use! Minitest::Reporters::ProgressReporter.new

class ActiveSupport::TestCase
  # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
  fixtures :all
end

class ActionDispatch::IntegrationTest
  include Capybara::DSL
  teardown do
    Capybara.reset_sessions!
    Capybara.use_default_driver
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
startblock-1.4 templates/test_helper.erb
startblock-1.3 templates/test_helper.erb
startblock-1.2 templates/test_helper.erb
startblock-1.1 templates/test_helper.erb
startblock-1.0 templates/test_helper.erb