Testing in Rails: Part 11 - Running Unit Tests
Wednesday, February 27th, 2008This is part of an ongoing series of posts about how to get started writing tests for Ruby on Rails. The series begins with an introduction and overview of the ideas behind testing.
One final post about unit tests and then we will move on to functional testing.
Running All Tests in a Single Test File
Up to now we have run our unit tests by simply asking Ruby to process the file that contains our tests.
When you are first developing unit tests on a single model, this may be the easiest way to do it. It will run all the tests in the WineTest file.


