diff options
author | bogdanvlviv <bogdanvlviv@gmail.com> | 2018-06-08 23:52:32 +0300 |
---|---|---|
committer | bogdanvlviv <bogdanvlviv@gmail.com> | 2018-06-08 23:59:56 +0300 |
commit | ad59b71b80fb056fc8a50f3037d6a2c5725df02b (patch) | |
tree | aa164492af326ef5727d5423181c05be7cd5c7c4 /activesupport/test/testing | |
parent | 6cd5cc375a5c78d08463254460b324a17d078586 (diff) | |
download | rails-ad59b71b80fb056fc8a50f3037d6a2c5725df02b.tar.gz rails-ad59b71b80fb056fc8a50f3037d6a2c5725df02b.tar.bz2 rails-ad59b71b80fb056fc8a50f3037d6a2c5725df02b.zip |
Remove extra `include ActiveSupport::Testing::MethodCallAssertions`
It includes via `require "abstract_unit"`.
Diffstat (limited to 'activesupport/test/testing')
-rw-r--r-- | activesupport/test/testing/method_call_assertions_test.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/activesupport/test/testing/method_call_assertions_test.rb b/activesupport/test/testing/method_call_assertions_test.rb index 4af000bb7e..0500e47def 100644 --- a/activesupport/test/testing/method_call_assertions_test.rb +++ b/activesupport/test/testing/method_call_assertions_test.rb @@ -1,11 +1,8 @@ # frozen_string_literal: true require "abstract_unit" -require "active_support/testing/method_call_assertions" class MethodCallAssertionsTest < ActiveSupport::TestCase - include ActiveSupport::Testing::MethodCallAssertions - class Level def increment; 1; end def decrement; end |