aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext
diff options
context:
space:
mode:
authorJuanito Fatas <katehuang0320@gmail.com>2015-03-02 11:17:55 +0800
committerJuanito Fatas <katehuang0320@gmail.com>2015-03-02 11:17:55 +0800
commit90068e3633fbae389ccf610669b2ae4ab97cc216 (patch)
treec851c5458f4c948832e1e73c721efec449deae4c /activesupport/test/core_ext
parentfc91616a4e6c953c419cccbce2ec7a3e1c0e3941 (diff)
downloadrails-90068e3633fbae389ccf610669b2ae4ab97cc216.tar.gz
rails-90068e3633fbae389ccf610669b2ae4ab97cc216.tar.bz2
rails-90068e3633fbae389ccf610669b2ae4ab97cc216.zip
Include object inclusion for enumerable test.
Diffstat (limited to 'activesupport/test/core_ext')
-rw-r--r--activesupport/test/core_ext/enumerable_test.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/enumerable_test.rb b/activesupport/test/core_ext/enumerable_test.rb
index e5d8ae7882..c8123a022a 100644
--- a/activesupport/test/core_ext/enumerable_test.rb
+++ b/activesupport/test/core_ext/enumerable_test.rb
@@ -1,6 +1,7 @@
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