1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Include ActiveSupport::Testing::MethodCallAssertions in railties/test/isolation/abstract_unit.rb

Related to #33102
This commit is contained in:
bogdanvlviv 2018-06-08 23:57:03 +03:00
parent ad59b71b80
commit f1de019993
No known key found for this signature in database
GPG key ID: E4ACD76A6DB6DFDD
2 changed files with 2 additions and 2 deletions

View file

@ -5,11 +5,9 @@ require "rack/test"
require "minitest/mock"
require "action_view"
require "active_support/testing/method_call_assertions"
class PerRequestDigestCacheTest < ActiveSupport::TestCase
include ActiveSupport::Testing::Isolation
include ActiveSupport::Testing::MethodCallAssertions
include Rack::Test::Methods
setup do

View file

@ -14,6 +14,7 @@ require "bundler/setup" unless defined?(Bundler)
require "active_support"
require "active_support/testing/autorun"
require "active_support/testing/stream"
require "active_support/testing/method_call_assertions"
require "active_support/test_case"
RAILS_FRAMEWORK_ROOT = File.expand_path("../../..", __dir__)
@ -430,6 +431,7 @@ class ActiveSupport::TestCase
include TestHelpers::Rack
include TestHelpers::Generation
include ActiveSupport::Testing::Stream
include ActiveSupport::Testing::MethodCallAssertions
def frozen_error_class
Object.const_defined?(:FrozenError) ? FrozenError : RuntimeError