spec_helper.rb 4.8 KB

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