aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-09-29 22:08:41 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-09-29 22:08:41 +0000
commit6ea4dd4a65f85f165f71cf1c866dea578dae9e49 (patch)
tree1c3be4cf62cc9826d4ce12840bf98789c587a64e /activesupport/lib
parent8e067b0b44b83c92e2417fb7256192be73e5a933 (diff)
downloadrails-6ea4dd4a65f85f165f71cf1c866dea578dae9e49.tar.gz
rails-6ea4dd4a65f85f165f71cf1c866dea578dae9e49.tar.bz2
rails-6ea4dd4a65f85f165f71cf1c866dea578dae9e49.zip
Mark Test::Unit#assert_difference incompatibility with Ruby 2 due to Proc#binding usage
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7682 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/core_ext/test/difference.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/test/difference.rb b/activesupport/lib/active_support/core_ext/test/difference.rb
index 3d75809c69..2ae4b7d6d1 100644
--- a/activesupport/lib/active_support/core_ext/test/difference.rb
+++ b/activesupport/lib/active_support/core_ext/test/difference.rb
@@ -1,6 +1,7 @@
module Test #:nodoc:
module Unit #:nodoc:
- module Assertions #:nodoc:
+ # FIXME: no Proc#binding in Ruby 2, must change this API
+ module Assertions #:nodoc:
# Test numeric difference between the return value of an expression as a result of what is evaluated
# in the yielded block.
#