]> git.openstreetmap.org Git - rails.git/blob - test/test_helper.rb
Adding message tests. Adding some international UTF-8 chars for the display name...
[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 load 'composite_primary_keys/fixtures.rb'
5
6 class Test::Unit::TestCase
7   # Transactional fixtures accelerate your tests by wrapping each test method
8   # in a transaction that's rolled back on completion.  This ensures that the
9   # test database remains unchanged so your fixtures don't have to be reloaded
10   # between every test method.  Fewer database queries means faster tests.
11   #
12   # Read Mike Clark's excellent walkthrough at
13   #   http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
14   #
15   # Every Active Record database supports transactions except MyISAM tables
16   # in MySQL.  Turn off transactional fixtures in this case; however, if you
17   # don't care one way or the other, switching from MyISAM to InnoDB tables
18   # is recommended.
19   self.use_transactional_fixtures = false
20
21   # Instantiated fixtures are slow, but give you @david where otherwise you
22   # would need people(:david).  If you don't want to migrate your existing
23   # test cases which use the @david style and don't mind the speed hit (each
24   # instantiated fixtures translates to a database query per test method),
25   # then set this back to true.
26   self.use_instantiated_fixtures  = false
27
28   # Load standard fixtures needed to test API methods
29   def self.api_fixtures
30     fixtures :users
31
32     fixtures :current_nodes, :nodes
33     set_fixture_class :current_nodes => :Node
34     set_fixture_class :nodes => :OldNode
35
36     fixtures :current_ways, :current_way_nodes, :current_way_tags
37     set_fixture_class :current_ways => :Way
38     set_fixture_class :current_way_nodes => :WayNode
39     set_fixture_class :current_way_tags => :WayTag
40
41     fixtures :ways, :way_nodes, :way_tags
42     set_fixture_class :ways => :OldWay
43     set_fixture_class :way_nodes => :OldWayNode
44     set_fixture_class :way_tags => :OldWayTag
45
46     fixtures :current_relations, :current_relation_members, :current_relation_tags
47     set_fixture_class :current_relations => :Relation
48     set_fixture_class :current_relation_members => :RelationMember
49     set_fixture_class :current_relation_tags => :RelationTag
50
51     fixtures :relations, :relation_members, :relation_tags
52     set_fixture_class :relations => :OldRelation
53     set_fixture_class :relation_members => :OldRelationMember
54     set_fixture_class :relation_tags => :OldRelationTag
55   end
56
57   # Add more helper methods to be used by all tests here...
58 end