spec_helper.rb 4.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. # frozen_string_literal: true
  2. # This file was generated by the `rails generate rspec:install` command. Conventionally, all
  3. # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
  4. # The generated `.rspec` file contains `--require spec_helper` which will cause
  5. # this file to always be loaded, without a need to explicitly require it in any
  6. # files.
  7. #
  8. # Given that it is always loaded, you are encouraged to keep this file as
  9. # light-weight as possible. Requiring heavyweight dependencies from this file
  10. # will add to the boot time of your test suite on EVERY test run, even for an
  11. # individual file that may not need all of that loaded. Instead, consider making
  12. # a separate helper file that requires the additional dependencies and performs
  13. # the additional setup, and require it from the spec files that actually need
  14. # it.
  15. #
  16. # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
  17. RSpec.configure do |config|
  18. # rspec-expectations config goes here. You can use an alternate
  19. # assertion/expectation library such as wrong or the stdlib/minitest
  20. # assertions if you prefer.
  21. config.expect_with :rspec do |expectations|
  22. # This option will default to `true` in RSpec 4. It makes the `description`
  23. # and `failure_message` of custom matchers include text for helper methods
  24. # defined using `chain`, e.g.:
  25. # be_bigger_than(2).and_smaller_than(4).description
  26. # # => "be bigger than 2 and smaller than 4"
  27. # ...rather than:
  28. # # => "be bigger than 2"
  29. expectations.include_chain_clauses_in_custom_matcher_descriptions = true
  30. end
  31. # rspec-mocks config goes here. You can use an alternate test double
  32. # library (such as bogus or mocha) by changing the `mock_with` option here.
  33. config.mock_with :rspec do |mocks|
  34. # Prevents you from mocking or stubbing a method that does not exist on
  35. # a real object. This is generally recommended, and will default to
  36. # `true` in RSpec 4.
  37. mocks.verify_partial_doubles = true
  38. end
  39. # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
  40. # have no way to turn it off -- the option exists only for backwards
  41. # compatibility in RSpec 3). It causes shared context metadata to be
  42. # inherited by the metadata hash of host groups and examples, rather than
  43. # triggering implicit auto-inclusion in groups with matching metadata.
  44. config.shared_context_metadata_behavior = :apply_to_host_groups
  45. # The settings below are suggested to provide a good initial experience
  46. # with RSpec, but feel free to customize to your heart's content.
  47. =begin
  48. # This allows you to limit a spec run to individual examples or groups
  49. # you care about by tagging them with `:focus` metadata. When nothing
  50. # is tagged with `:focus`, all examples get run. RSpec also provides
  51. # aliases for `it`, `describe`, and `context` that include `:focus`
  52. # metadata: `fit`, `fdescribe` and `fcontext`, respectively.
  53. config.filter_run_when_matching :focus
  54. # Allows RSpec to persist some state between runs in order to support
  55. # the `--only-failures` and `--next-failure` CLI options. We recommend
  56. # you configure your source control system to ignore this file.
  57. config.example_status_persistence_file_path = "spec/examples.txt"
  58. # Limits the available syntax to the non-monkey patched syntax that is
  59. # recommended. For more details, see:
  60. # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
  61. # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
  62. # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
  63. config.disable_monkey_patching!
  64. # Many RSpec users commonly either run the entire suite or an individual
  65. # file, and it's useful to allow more verbose output when running an
  66. # individual spec file.
  67. if config.files_to_run.one?
  68. # Use the documentation formatter for detailed output,
  69. # unless a formatter has already been configured
  70. # (e.g. via a command-line flag).
  71. config.default_formatter = "doc"
  72. end
  73. # Print the 10 slowest examples and example groups at the
  74. # end of the spec run, to help surface which specs are running
  75. # particularly slow.
  76. config.profile_examples = 10
  77. # Run specs in random order to surface order dependencies. If you find an
  78. # order dependency and want to debug it, you can fix the order by providing
  79. # the seed, which is printed after each run.
  80. # --seed 1234
  81. config.order = :random
  82. # Seed global randomization in this process using the `--seed` CLI option.
  83. # Setting this allows you to use `--seed` to deterministically reproduce
  84. # test failures related to randomization by passing the same `--seed` value
  85. # as the one that triggered the failure.
  86. Kernel.srand config.seed
  87. =end
  88. end