|
|
|
|
|
by tamersalama
4843 days ago
|
|
"because Test Unit documentation is terrible" Are you confusing Test Unit documentation with 'How/What to test' documentation? I can't think of any documentation required if what you use is a group of asserts. Test::Unit in a nutshell:
`test "should do something"; ...; end` is what gets run in each of the files. `setup` is called before each test. `teardown` is called after each test. use `assert_*` at your discretion. |
|