aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/enumerable_test.rb
diff options
context:
space:
mode:
authorJuanito Fatas <katehuang0320@gmail.com>2015-03-02 11:32:35 +0800
committerJuanito Fatas <katehuang0320@gmail.com>2015-03-02 11:32:35 +0800
commit7c34548fe0c7c5078fe9672e236630597be50d13 (patch)
treeaebb890b7d8db605de59cb14e13e50401b59d5bd /activesupport/test/core_ext/enumerable_test.rb
parentafd1a870f8046e96010052c8db6b8f40d5c3ef02 (diff)
downloadrails-7c34548fe0c7c5078fe9672e236630597be50d13.tar.gz
rails-7c34548fe0c7c5078fe9672e236630597be50d13.tar.bz2
rails-7c34548fe0c7c5078fe9672e236630597be50d13.zip
Use include? instead of in? for Enumerable#without.
[egilburg]
Diffstat (limited to 'activesupport/test/core_ext/enumerable_test.rb')
-rw-r--r--activesupport/test/core_ext/enumerable_test.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/activesupport/test/core_ext/enumerable_test.rb b/activesupport/test/core_ext/enumerable_test.rb
index c8123a022a..e5d8ae7882 100644
--- a/activesupport/test/core_ext/enumerable_test.rb
+++ b/activesupport/test/core_ext/enumerable_test.rb
@@ -1,7 +1,6 @@
require 'abstract_unit'
require 'active_support/core_ext/array'
require 'active_support/core_ext/enumerable'
-require 'active_support/core_ext/object/inclusion'
Payment = Struct.new(:price)
class SummablePayment < Payment