OSDN Git Service

rename lisence to license
[pettanr/pettanr.git] / spec / spec_helper.rb
1 # This file is copied to spec/ when you run 'rails generate rspec:install'
2 ENV["RAILS_ENV"] ||= 'test'
3 require File.expand_path("../../config/environment", __FILE__)
4 require 'rspec/rails'
5 require 'rspec/autorun'
6
7 # Requires supporting ruby files with custom matchers and macros, etc,
8 # in spec/support/ and its subdirectories.
9 Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}
10
11 RSpec.configure do |config|
12   # == Mock Framework
13   #
14   # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
15   #
16   # config.mock_with :mocha
17   # config.mock_with :flexmock
18   # config.mock_with :rr
19   config.mock_with :rspec
20
21   # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
22   config.fixture_path = "#{::Rails.root}/spec/fixtures"
23
24   # If you're not using ActiveRecord, or you'd prefer not to run each of your
25   # examples within a transaction, remove the following line or assign false
26   # instead of true.
27   config.use_transactional_fixtures = true
28
29   # If true, the base class of anonymous controllers will be inferred
30   # automatically. This will be the default behavior in future versions of
31   # rspec-rails.
32   config.infer_base_class_for_anonymous_controllers = false
33 end