Getting autotest to work with Ruby projects
January 26th, 2009
If your a fan of creating Rails applications using ZenTest’s autotest and want to use it on a Ruby project, then you will need to follow this convention:
- All test files need to be in a directory called test
- All test files need to start with the word test
- All your test classes must start with Test
- and finally, your code should be in a directory called lib
Just a little something I learned trying to get autotest to work with my Ruby project.
Categories: Ruby
Hope you’re also using autotest-notification:
http://github.com/carlosbrando/autotest-notification/tree/master