The code is now completely covered in specs
[lyrix.git] / spec / spec_helper.rb
blob9d42bff24ff2f3b8f0d21d25372f6b6e95b7890a
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/rails'
7 Spec::Runner.configure do |config|
8   config.use_transactional_fixtures = true
9   config.use_instantiated_fixtures  = false
10   config.fixture_path = RAILS_ROOT + '/spec/fixtures'
11   config.before(:each, :behaviour_type => :controller) do
12     raise_controller_errors
13   end
15   # You can declare fixtures for each behaviour like this:
16   #   describe "...." do
17   #     fixtures :table_a, :table_b
18   #
19   # Alternatively, if you prefer to declare them only once, you can
20   # do so here, like so ...
21   #
22   #   config.global_fixtures = :table_a, :table_b
23   #
24   # If you declare global fixtures, be aware that they will be declared
25   # for all of your examples, even those that don't use them.
26 end