I can't get fixtures to load correctly in a Mosquito test. The first fixture loads in the unit test, but the rest don't load at all.<br><br>File structure:<br> tracker/<br> tracker.rb<br> test/<br> test_tracker.rb
<br> fixtures/<br> tracker_measurements.yml<br> tracker_projects.yml<br><br>Relevant test code:<br><br>require 'rubygems'<br>require 'mosquito'<br>require File.dirname
(__FILE__) + "/../tracker"<br><br>Tracker.create<br>include Tracker::Models<br>...<br>class TestMeasurement < Camping::UnitTest<br><br> fixtures :tracker_measurements, :tracker_projects<br><br> ...<br><br> def test_should_have_project
<br> measurement = Measurement.find 1<br> assert_kind_of Project, measurement.project<br> # measurement.project is always nilClass<br> assert_equal measurement.project_id, <a href="http://measurement.project.id">
measurement.project.id</a><br> end<br><br> ...<br><br>end<br><br>The test.log shows that tracker_measurements.yml is loaded, but tracker_projects.yml never is touched. I know the relationship works because I'm using it in the application already, and I also cannot load any other fixtures, no matter the name.
<br><br>Any help would be greatly appreciated,<br>Josh<br>