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")
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/'
18 # You can declare fixtures for each example_group like this:
20 # fixtures :table_a, :table_b
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.
26 # config.global_fixtures = :table_a, :table_b
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.
33 # RSpec uses it's own mocking framework by default. If you prefer to
34 # use mocha, flexmock or RR, uncomment the appropriate line:
36 # config.mock_with :mocha
37 # config.mock_with :flexmock
38 # config.mock_with :rr