4 def load_doozers(fixture_path=nil, doozer_path=nil)
5 fixture_path ||= File.expand_path(File.join(RAILS_ROOT, 'test', 'fixtures'))
6 doozer_path ||= File.expand_path(File.join(fixture_path, 'doozers'))
8 # Add fixtures to the load path so that doozers can require other doozers
10 # Load all the doozers!
11 Dir[ File.join(doozer_path, '*.rb') ].each do |doozer|