aboutsummaryrefslogtreecommitdiffstats
path: root/spec/spec_helper.rb
blob: 68edfe8c29bff67edf9506e96043d3d2d56bd83c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
require 'rubygems'

def setup_environment
  # Loading more in this block will cause your tests to run faster. However,
  # if you change any configuration or code from libraries loaded here, you'll
  # need to restart spork for it take effect.
  
  # Configure Rails Environment
  ENV["RAILS_ENV"] ||= 'test'
  require File.expand_path("../dummy/config/environment.rb",  __FILE__)
    
  require 'rspec/rails'
  require 'capybara/rspec'
  require 'factory_girl'
  require 'refinerycms-testing'

  Rails.backtrace_cleaner.remove_silencers!

  Dir[
    File.expand_path("../support/**/*.rb", __FILE__),
    File.expand_path("../factories/**/*.rb", __FILE__)
  ].each {|f| require f}

  RSpec.configure do |config|
    config.mock_with :rspec
    config.use_transactional_fixtures = false
    
    config.extend ActionController::Testing::Caching, :type => :controller
  end
end

def each_run
end

# If spork is available in the Gemfile it'll be used but we don't force it.
unless (begin; require 'spork'; rescue LoadError; nil end).nil?
  Spork.prefork do
    setup_environment
  end

  Spork.each_run do
    each_run
  end
else
  setup_environment
  each_run
end