# then set this back to true.
self.use_instantiated_fixtures = false
+ # Load standard fixtures needed to test API methods
+ def self.api_fixtures
+ fixtures :users
+
+ fixtures :current_nodes, :nodes
+ set_fixture_class :current_nodes => :Node
+ set_fixture_class :nodes => :OldNode
+
+ fixtures :current_ways, :current_way_nodes, :current_way_tags
+ set_fixture_class :current_ways => :Way
+ set_fixture_class :current_way_nodes => :WayNode
+ set_fixture_class :current_way_tags => :WayTag
+
+ fixtures :ways, :way_nodes, :way_tags
+ set_fixture_class :ways => :OldWay
+ set_fixture_class :way_nodes => :OldWayNode
+ set_fixture_class :way_tags => :OldWayTag
+ end
+
# Add more helper methods to be used by all tests here...
end