aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-06-08 18:46:47 -0400
committerGitHub <noreply@github.com>2018-06-08 18:46:47 -0400
commit34b16ce86526c9b8ce9abfe1190eadd0caf7be49 (patch)
treecc1da202ae94bcecf1ac12ba9e53f2d104e99702 /activesupport
parentc07c708cf692658fc8e004b5e01e42edadaad5a1 (diff)
parentf1de019993ee52cd64f81cd5d168736bc2618558 (diff)
downloadrails-34b16ce86526c9b8ce9abfe1190eadd0caf7be49.tar.gz
rails-34b16ce86526c9b8ce9abfe1190eadd0caf7be49.tar.bz2
rails-34b16ce86526c9b8ce9abfe1190eadd0caf7be49.zip
Merge pull request #33103 from bogdanvlviv/fix-using-of-method_call_assertions
Remove extra `include ActiveSupport::Testing::MethodCallAssertions`
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/test/testing/method_call_assertions_test.rb3
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