Fix my previous commit. Don't say it's been removed when it really

hasn't.

Also change the assert reference to be more consistent with the rest
of the documentation.
This commit is contained in:
Sean Bryant 2009-04-22 13:58:14 -04:00
parent 2d9c37d169
commit e8071d7c64

@ -413,7 +413,7 @@ h4. Rails Specific Assertions
Rails adds some custom assertions of its own to the +test/unit+ framework:
NOTE: +assert_valid(record)+ has been deprecated and is no longer available Rails 2.3. Please use +assert record.valid?+ instead.
NOTE: +assert_valid(record)+ has been deprecated. Please use +assert(record.valid?)+ instead.
|_.Assertion |_.Purpose|
|+assert_valid(record)+ |Ensures that the passed record is valid by Active Record standards and returns any error messages if it is not.|