Sha256: 1546a9fbe0842dcb1cb67f4486831093feed1d1625e9de4f77b133c623e43400

Contents?: true

Size: 444 Bytes

Versions: 3

Compression:

Stored size: 444 Bytes

Contents

# frozen_string_literal: true

ENV["RAILS_ENV"] ||= "test"
require_relative("../config/environment")
require("rails/test_help")

module ActiveSupport
  class TestCase
    # Run tests in parallel with specified workers
    parallelize(workers: :number_of_processors)

    # 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
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
zapp-0.2.1 examples/rails-app/test/test_helper.rb
zapp-0.1.1 examples/rails-app/test/test_helper.rb
zapp-0.1.0 examples/rails-app/test/test_helper.rb