load all fixtures
class Test::Unit::TestCase def self.all_fixtures Dir[File.dirname(__FILE__) + "/fixtures/*.yml"].each do |f| fixtures File.basename(f, '.yml') end end .. end
and in your tests use it as follows:
class FooTest < Test::Unit::TestCase all_fixtures .. end
Happy testing!