mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Don't require 'active_support/all' in an individual test case!!!
and Git taught me that this crap was added via this commit... 68db6bc431
This commit is contained in:
parent
d21e5fbc70
commit
03018cb79b
2 changed files with 1 additions and 1 deletions
|
@ -10,6 +10,7 @@ I18n.enforce_available_locales = false
|
||||||
|
|
||||||
require "active_support/testing/autorun"
|
require "active_support/testing/autorun"
|
||||||
require "active_support/testing/method_call_assertions"
|
require "active_support/testing/method_call_assertions"
|
||||||
|
require "active_support/core_ext/integer/time"
|
||||||
|
|
||||||
class ActiveModel::TestCase < ActiveSupport::TestCase
|
class ActiveModel::TestCase < ActiveSupport::TestCase
|
||||||
include ActiveSupport::Testing::MethodCallAssertions
|
include ActiveSupport::Testing::MethodCallAssertions
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
require "cases/helper"
|
require "cases/helper"
|
||||||
require "active_support/all"
|
|
||||||
|
|
||||||
require "models/topic"
|
require "models/topic"
|
||||||
require "models/person"
|
require "models/person"
|
||||||
|
|
Loading…
Reference in a new issue