main
1Bundler.require
2RSpec.configure do |config|
3 config.order = :random
4 Kernel.srand config.seed
5 config.expect_with :rspec do |expectations|
6 expectations.syntax = [:expect, :should]
7 end
8 config.mock_with :rspec do |mocks|
9 mocks.syntax = [:expect, :should]
10 mocks.verify_partial_doubles = true
11 end
12end