Displaying 1 result from an estimated 1 matches for "test_deactiv".
2006 Aug 19
1
Testing and Fixtures
...fore the test methods.
My Ruby on rails book quite clearly says that the following things
happen before every test method is run:
- all records in the database are deleted
- all the data in the fixtures are loaded into the database
- the setup method is run.
In the following situation, the test_deactivate method happens to get
run first. Then the test_find_all_for_team method runs, and doesn''t
find the expected number of records (because one of them has been
de-activated).
Am I doing something wrong, or do the fixtures not get loaded every time?
code snippet:
require File.dirname(...