# This file is copied to ~/spec when you run 'ruby script/generate rspec' # from the project root directory. ENV["RAILS_ENV"] ||= "test" require File.expand_path(File.dirname(__FILE__) + "/../config/environment") require 'spec/rails' Spec::Runner.configure do |config| config.use_transactional_fixtures = true config.use_instantiated_fixtures = false config.fixture_path = RAILS_ROOT + '/spec/fixtures' config.before(:each, :behaviour_type => :controller) do raise_controller_errors end # You can declare fixtures for each behaviour like this: # describe "...." do # fixtures :table_a, :table_b # # Alternatively, if you prefer to declare them only once, you can # do so here, like so ... # config.global_fixtures = :shipping_methods, :products, :orders, :order_lines, :customers, :customer_statuses, :representations, :countries, :pricing, :price_types, :payment_terms, :discounts, :discount_tables, :addresses, :users, :order_statuses # # If you declare global fixtures, be aware that they will be declared # for all of your examples, even those that don't use them. end