|
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 |
|---|
| 4 |
|
|---|
| 5 |
def default_test |
|---|
| 6 |
end |
|---|
| 7 |
end |
|---|
| 8 |
end |
|---|
| 9 |
end |
|---|