diff options
-rw-r--r-- | activesupport/CHANGELOG | 2 | ||||
-rw-r--r-- | activesupport/lib/active_support/core_ext/test/unit/assertions.rb | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index c5cc50f652..a8177c680a 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Remove :nodoc: entries around the ActiveSupport test/unit assertions. #10946 [dancroak, jamesh] + * Add Time.zone_default accessor for setting the default time zone. Rails::Configuration.time_zone sets this. #10982 [Geoff Buesing] * cache.fetch(key, :force => true) to force a cache miss. [Jeremy Kemper] diff --git a/activesupport/lib/active_support/core_ext/test/unit/assertions.rb b/activesupport/lib/active_support/core_ext/test/unit/assertions.rb index 2ae4b7d6d1..77fe325fb4 100644 --- a/activesupport/lib/active_support/core_ext/test/unit/assertions.rb +++ b/activesupport/lib/active_support/core_ext/test/unit/assertions.rb @@ -1,7 +1,9 @@ -module Test #:nodoc: - module Unit #:nodoc: +module Test + module Unit + #-- # FIXME: no Proc#binding in Ruby 2, must change this API - module Assertions #:nodoc: + #++ + module Assertions # Test numeric difference between the return value of an expression as a result of what is evaluated # in the yielded block. # |