diff options
author | Juanito Fatas <katehuang0320@gmail.com> | 2015-03-02 11:17:55 +0800 |
---|---|---|
committer | Juanito Fatas <katehuang0320@gmail.com> | 2015-03-02 11:17:55 +0800 |
commit | 90068e3633fbae389ccf610669b2ae4ab97cc216 (patch) | |
tree | c851c5458f4c948832e1e73c721efec449deae4c /activesupport/test/core_ext | |
parent | fc91616a4e6c953c419cccbce2ec7a3e1c0e3941 (diff) | |
download | rails-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.rb | 1 |
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 |