master
1# This file was generated by the `rails generate rspec:install` command. Conventionally, all
2# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3# The generated `.rspec` file contains `--require spec_helper` which will cause this
4# file to always be loaded, without a need to explicitly require it in any files.
5#
6# Given that it is always loaded, you are encouraged to keep this file as
7# light-weight as possible. Requiring heavyweight dependencies from this file
8# will add to the boot time of your test suite on EVERY test run, even for an
9# individual file that may not need all of that loaded. Instead, make a
10# separate helper file that requires this one and then use it only in the specs
11# that actually need it.
12#
13# The `.rspec` file also contains a few flags that are not defaults but that
14# users commonly want.
15#
16# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
17RSpec.configure do |config|
18 config.backtrace_exclusion_patterns << /gems/
19 # The settings below are suggested to provide a good initial experience
20 # with RSpec, but feel free to customize to your heart's content.
21 # These two settings work together to allow you to limit a spec run
22 # to individual examples or groups you care about by tagging them with
23 # `:focus` metadata. When nothing is tagged with `:focus`, all examples
24 # get run.
25 config.filter_run :focus
26 config.run_all_when_everything_filtered = true
27
28 # Many RSpec users commonly either run the entire suite or an individual
29 # file, and it's useful to allow more verbose output when running an
30 # individual spec file.
31 if config.files_to_run.one?
32 # Use the documentation formatter for detailed output,
33 # unless a formatter has already been configured
34 # (e.g. via a command-line flag).
35 config.default_formatter = 'doc'
36 end
37
38 # Run specs in random order to surface order dependencies. If you find an
39 # order dependency and want to debug it, you can fix the order by providing
40 # the seed, which is printed after each run.
41 # --seed 1234
42 config.order = :random
43
44 # Seed global randomization in this process using the `--seed` CLI option.
45 # Setting this allows you to use `--seed` to deterministically reproduce
46 # test failures related to randomization by passing the same `--seed` value
47 # as the one that triggered the failure.
48 Kernel.srand config.seed
49
50 # rspec-expectations config goes here. You can use an alternate
51 # assertion/expectation library such as wrong or the stdlib/minitest
52 # assertions if you prefer.
53 config.expect_with :rspec do |expectations|
54 # Enable only the newer, non-monkey-patching expect syntax.
55 # For more details, see:
56 # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
57 expectations.syntax = :expect
58 #expectations.syntax = [:should, :expect]
59 end
60
61 # rspec-mocks config goes here. You can use an alternate test double
62 # library (such as bogus or mocha) by changing the `mock_with` option here.
63 config.mock_with :rspec do |mocks|
64 # Enable only the newer, non-monkey-patching expect syntax.
65 # For more details, see:
66 # - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
67 mocks.syntax = :expect
68 #mocks.syntax = [:should, :expect]
69
70 # Prevents you from mocking or stubbing a method that does not exist on
71 # a real object. This is generally recommended.
72 mocks.verify_partial_doubles = true
73 end
74end