I have a model which gets its data from a parser object. I'm thinking that the parser class should live in the lib/ directory (although I could be persuaded that it should live soewhere else). The question is: Where should my unit tests for the parser class be? And how do I ensure that they are run each time I run rake test?
|
In the Rails application I'm working on, I decided to just place the tests in the
For me, this was the path of last resistance, as these tests ran without having to make any other changes. |
|||
|
|
|
Here's one way: Create
Mimic the structure of your Run If you want all tests to run when you invoke
|
|||
|
|
I was looking to do the same thing but with rspec & autospec and it took a little digging to figure out just where they were getting the list of directories / file patterns that dictated which test files to run. Ultimately I found this in lib/tasks/rspec.rake:86
I had placed my tests in a new spec/libs directory when the rpsec.rake file was configured to look in spec/lib. Simply renaming libs -> lib did the trick! |
|||
|