you may be experiencing problems loading the fixtures after
loading to rails 2. Every time you restart the test server,
your fixtures will load but after that they will not.
The problem is that the fixtures are being cached.
Here's the fix:
In fixture_loader.rb
under the load_fixtures method
This is what needs to be changed
if fixtures.any?
*Fixtures.reset_cache* #add this line
Fixtures.create_fixtures fixtures_path, fixtures
end
------------------------------------------------------------
---------
Posted via Jive Forums
http://forums.openqa.org/thread.jsp
a?threadID=11367&messageID=32747#32747
------------------------------------------------------------
---------
To unsubscribe, e-mail:
selenium-on-rails-users-unsubscribe openqa.org
For additional commands, e-mail:
selenium-on-rails-users-help openqa.org
|