blob: d79d49abaa8986e10a9c697ab5fc5b733260e4e0 (
plain)
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
|
ENV['RAILS_ENV'] ||= 'test'
require "bundler/setup"
require "database_cleaner"
begin
require File.expand_path('../dummy/config/environment', __FILE__)
rescue LoadError
puts 'Could not load dummy application. Please ensure you have run `bundle exec rake test_app`'
exit
end
RSpec.configure do |config|
config.expect_with :rspec do |c|
c.syntax = :expect
end
config.disable_monkey_patching!
config.filter_run :focus
config.run_all_when_everything_filtered = true
config.default_formatter = 'doc' if config.files_to_run.one?
config.order = "random"
Kernel.srand config.seed
config.before :suite do
DatabaseCleaner.strategy = :transaction
end
config.before :each do
DatabaseCleaner.start
end
# After each spec clean the database.
config.after :each do
DatabaseCleaner.clean
end
end
|