diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-07-24 01:23:15 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-07-24 01:23:15 +0000 |
commit | 230615b2860165368b95aa31a75d719b0b0c379f (patch) | |
tree | e0eabaee8b032ff10329ab5bbf604d53c564ee1a /activesupport/lib | |
parent | 937a7abe4556f06e056af33c40a07c3b58652ed7 (diff) | |
download | rails-230615b2860165368b95aa31a75d719b0b0c379f.tar.gz rails-230615b2860165368b95aa31a75d719b0b0c379f.tar.bz2 rails-230615b2860165368b95aa31a75d719b0b0c379f.zip |
assert_difference belongs in Assertions, not forced onto TestCase (closes #8894) [norbert]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7213 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/test/difference.rb | 2 |
1 files changed, 1 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 d2c81d97c0..36fe8b166e 100644 --- a/activesupport/lib/active_support/core_ext/test/difference.rb +++ b/activesupport/lib/active_support/core_ext/test/difference.rb @@ -1,6 +1,6 @@ module Test #:nodoc: module Unit #:nodoc: - class TestCase #:nodoc: + module Assertions #:nodoc: # Test numeric difference between the return value of an expression as a result of what is evaluated # in the yielded block. # |