I’m trying to test my validation code so I would like to use fixtures
for my data source. However, fixtures want to add the data to the
database before making the data available to your test. Since I’m
testing the validation routines I want to create data in my fixtures
that won’t be valid in the database. Is there a way I can load the
fixture files into memory without creating records in the database.?
Charlie