changelog shortlog tags changeset manifest revisions annotate raw

vendor/plugins/rspec_on_rails/generators/rspec/templates/spec_helper.rb

changeset 16: 01fd3f10ae84
author: moriq@moriq.com
date: Mon Mar 10 10:13:18 2008 +0900 (16 years ago)
permissions: -rw-r--r--
description: add plugins rspec_on_rails
1# This file is copied to ~/spec when you run 'ruby script/generate rspec'
2# from the project root directory.
3ENV["RAILS_ENV"] = "test"
4require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
5require 'spec'
6require 'spec/rails'
7
8Spec::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
39end