-
Notifications
You must be signed in to change notification settings - Fork 250
/
Copy pathspec_helper.rb
60 lines (51 loc) · 1.74 KB
/
spec_helper.rb
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
48
49
50
51
52
53
54
55
56
57
58
59
60
# This file was generated by the `rspec --init` command. Conventionally, all
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
# Require this file using `require "spec_helper"` to ensure that it is only
# loaded once.
#
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
if ENV["CODE_COVERAGE"] == "true"
# SimpleCov must be started before anything else is loaded.
require "simplecov"
require "simplecov-json"
SimpleCov.start do
# Any not-loaded files matching this glob will be counted as having 0% coverage.
track_files "lib/**/*.rb"
# SimpleCov won't track coverage in files whose paths match these strings.
add_filter [
"/spec/",
"/version.rb", # Loads in advance with `bundle exec`.
]
formatter SimpleCov::Formatter::JSONFormatter
end
end
require "#{File.dirname(__FILE__)}/../lib/synapse"
require 'support/configuration'
require 'webmock/rspec'
# configure timecop
require 'timecop'
Timecop.safe_mode = true
# configure factory girl
require 'factory_girl'
RSpec.configure do |config|
config.include FactoryGirl::Syntax::Methods
config.before(:suite) do
FactoryGirl.find_definitions
end
end
# general RSpec config
RSpec.configure do |config|
config.run_all_when_everything_filtered = true
config.filter_run :focus
config.include Configuration
# verify every double we can think of
config.mock_with :rspec do |mocks|
mocks.verify_doubled_constant_names = true
mocks.verify_partial_doubles = true
end
# Run specs in random order to surface order dependencies. If you find an
# order dependency and want to debug it, you can fix the order by providing
# the seed, which is printed after each run.
# --seed 1234
config.order = 'random'
end