aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/object
diff options
context:
space:
mode:
authorlsylvester <lachlan.sylvester@hypothetical.com.au>2014-08-20 04:56:54 -0200
committerlsylvester <lachlan.sylvester@hypothetical.com.au>2014-09-15 13:59:19 +1000
commitf9767514cbdd6ef38aa62f084059776d75ed6962 (patch)
tree25d622d57c2c02921e0ef527730adc4c6d230ba6 /activesupport/test/core_ext/object
parenta3a8a691b2a826f19d71780b1ba9ffac15eb4f89 (diff)
downloadrails-f9767514cbdd6ef38aa62f084059776d75ed6962.tar.gz
rails-f9767514cbdd6ef38aa62f084059776d75ed6962.tar.bz2
rails-f9767514cbdd6ef38aa62f084059776d75ed6962.zip
add implementation of respond_to? for ActiveSupport::Duration
Diffstat (limited to 'activesupport/test/core_ext/object')
-rw-r--r--activesupport/test/core_ext/object/duplicable_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/core_ext/object/duplicable_test.rb b/activesupport/test/core_ext/object/duplicable_test.rb
index 34679cb362..8cc39ae7b9 100644
--- a/activesupport/test/core_ext/object/duplicable_test.rb
+++ b/activesupport/test/core_ext/object/duplicable_test.rb
@@ -4,7 +4,7 @@ require 'active_support/core_ext/object/duplicable'
require 'active_support/core_ext/numeric/time'
class DuplicableTest < ActiveSupport::TestCase
- RAISE_DUP = [nil, false, true, :symbol, 1, 2.3, 5.seconds, method(:puts)]
+ RAISE_DUP = [nil, false, true, :symbol, 1, 2.3, method(:puts)]
ALLOW_DUP = ['1', Object.new, /foo/, [], {}, Time.now, Class.new, Module.new]
# Needed to support Ruby 1.9.x, as it doesn't allow dup on BigDecimal, instead