]> git.openstreetmap.org Git - rails.git/blob - spec/spec_helper.rb
210d9d1967c08840d1aad97dfecb584b3bcb492b
[rails.git] / spec / spec_helper.rb
1 # This file is copied to ~/spec when you run 'ruby script/generate rspec'
2 # from the project root directory.
3 ENV["RAILS_ENV"] = "test"
4 require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
5 require 'spec'
6 require 'spec/rails'
7
8 Spec::Runner.configure do |config|
9   # If you're not using ActiveRecord you should remove these
10   # lines, delete config/database.yml and disable :active_record
11   # in your config/boot.rb
12   config.use_transactional_fixtures = true
13   config.use_instantiated_fixtures  = false
14   config.fixture_path = RAILS_ROOT + '/spec/fixtures/'
15
16   # == Fixtures
17   #
18   # You can declare fixtures for each example_group like this:
19   #   describe "...." do
20   #     fixtures :table_a, :table_b
21   #
22   # Alternatively, if you prefer to declare them only once, you can
23   # do so right here. Just uncomment the next line and replace the fixture
24   # names with your fixtures.
25   #
26   # config.global_fixtures = :table_a, :table_b
27   #
28   # If you declare global fixtures, be aware that they will be declared
29   # for all of your examples, even those that don't use them.
30   #
31   # == Mock Framework
32   #
33   # RSpec uses it's own mocking framework by default. If you prefer to
34   # use mocha, flexmock or RR, uncomment the appropriate line:
35   #
36   # config.mock_with :mocha
37   # config.mock_with :flexmock
38   # config.mock_with :rr
39 end