19 lines
538 B
Ruby
19 lines
538 B
Ruby
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
|
RSpec.configure do |config|
|
|
config.treat_symbols_as_metadata_keys_with_true_values = true
|
|
config.run_all_when_everything_filtered = true
|
|
config.filter_run :focus
|
|
|
|
config.order = 'random'
|
|
end
|
|
|
|
# Configure Rails Environment
|
|
ENV["RAILS_ENV"] = "test"
|
|
|
|
require File.expand_path("../../test/dummy/config/environment.rb", __FILE__)
|
|
|
|
Rails.backtrace_cleaner.remove_silencers!
|
|
|
|
# Load support files
|
|
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|