]> git.openstreetmap.org Git - rails.git/blob - test/test_helper.rb
Enable compression for object history API calls.
[rails.git] / test / test_helper.rb
1 ENV["RAILS_ENV"] = "test"
2 require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
3 require 'test_help'
4
5 class Test::Unit::TestCase
6   # Transactional fixtures accelerate your tests by wrapping each test method
7   # in a transaction that's rolled back on completion.  This ensures that the
8   # test database remains unchanged so your fixtures don't have to be reloaded
9   # between every test method.  Fewer database queries means faster tests.
10   #
11   # Read Mike Clark's excellent walkthrough at
12   #   http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
13   #
14   # Every Active Record database supports transactions except MyISAM tables
15   # in MySQL.  Turn off transactional fixtures in this case; however, if you
16   # don't care one way or the other, switching from MyISAM to InnoDB tables
17   # is recommended.
18   self.use_transactional_fixtures = false
19
20   # Instantiated fixtures are slow, but give you @david where otherwise you
21   # would need people(:david).  If you don't want to migrate your existing
22   # test cases which use the @david style and don't mind the speed hit (each
23   # instantiated fixtures translates to a database query per test method),
24   # then set this back to true.
25   self.use_instantiated_fixtures  = false
26
27   # Load standard fixtures needed to test API methods
28   def self.api_fixtures
29     fixtures :users
30
31     fixtures :current_nodes, :nodes
32     set_fixture_class :current_nodes => :Node
33     set_fixture_class :nodes => :OldNode
34
35     fixtures :current_segments, :segments
36     set_fixture_class :current_segments => :Segment
37     set_fixture_class :segments => :OldSegment
38
39     fixtures :current_ways, :current_way_segments, :current_way_tags
40     set_fixture_class :current_ways => :Way
41     set_fixture_class :current_way_segments => :WaySegment
42     set_fixture_class :current_way_tags => :WayTag
43
44     fixtures :ways, :way_segments, :way_tags
45     set_fixture_class :ways => :OldWay
46     set_fixture_class :way_segments => :OldWaySegment
47     set_fixture_class :way_tags => :OldWayTag
48   end
49
50   # Add more helper methods to be used by all tests here...
51 end