Wiki source for ZenTestCribSheet
======""ZenTest"" Crib Sheet======
Notes for making ""ZenTest"" and its companion Ruby testing tools easier to use. [[LarryGilbert I]] use version 3.6.0.
=====autotest=====
autotest expects certain things, including:
- Test files are in the ##test/## subdirectory of the current directory.
- Within test files, there is a class ##""TestX""## for each class ##X##. The names are in camel case //based on the name of the file containing the tests//. (Example: If ##class XY## has tests in ##test/test_xy.rb##, they should be in ##""class TestXy""##, not ##""TestXY""##.)
=====Categories=====
[[CategoryCribSheets]]
Notes for making ""ZenTest"" and its companion Ruby testing tools easier to use. [[LarryGilbert I]] use version 3.6.0.
=====autotest=====
autotest expects certain things, including:
- Test files are in the ##test/## subdirectory of the current directory.
- Within test files, there is a class ##""TestX""## for each class ##X##. The names are in camel case //based on the name of the file containing the tests//. (Example: If ##class XY## has tests in ##test/test_xy.rb##, they should be in ##""class TestXy""##, not ##""TestXY""##.)
=====Categories=====
[[CategoryCribSheets]]