Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

root/trunk/activesupport/lib/active_support/testing/default.rb

Revision 8570, 188 bytes (checked in by bitsweat, 9 months ago)

* Continue evolution toward ActiveSupport::TestCase and friends. #10679 [Josh Peek]

* TestCase: introduce declared setup and teardown callbacks. Pass a list of methods and an optional block to call before setup or after teardown. Setup callbacks are run in the order declared; teardown callbacks are run in reverse. [Jeremy Kemper]

Line 
1 module ActiveSupport
2   module Testing
3     module Default #:nodoc:
4       # Placeholder so test/unit ignores test cases without any tests.
5       def default_test
6       end
7     end
8   end
9 end
Note: See TracBrowser for help on using the browser.