A website template with lots of features, built with ruby on rails.

spec_helper.rb 4.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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, consider making
  10. # a separate helper file that requires the additional dependencies and performs
  11. # the additional setup, and require it from the spec files 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
  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. # The settings below are suggested to provide a good initial experience
  40. # with RSpec, but feel free to customize to your heart's content.
  41. =begin
  42. # These two settings work together to allow you to limit a spec run
  43. # to individual examples or groups you care about by tagging them with
  44. # `:focus` metadata. When nothing is tagged with `:focus`, all examples
  45. # get run.
  46. config.filter_run :focus
  47. config.run_all_when_everything_filtered = true
  48. # Limits the available syntax to the non-monkey patched syntax that is recommended.
  49. # For more details, see:
  50. # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
  51. # - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
  52. # - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
  53. config.disable_monkey_patching!
  54. # Many RSpec users commonly either run the entire suite or an individual
  55. # file, and it's useful to allow more verbose output when running an
  56. # individual spec file.
  57. if config.files_to_run.one?
  58. # Use the documentation formatter for detailed output,
  59. # unless a formatter has already been configured
  60. # (e.g. via a command-line flag).
  61. config.default_formatter = 'doc'
  62. end
  63. # Print the 10 slowest examples and example groups at the
  64. # end of the spec run, to help surface which specs are running
  65. # particularly slow.
  66. config.profile_examples = 10
  67. # Run specs in random order to surface order dependencies. If you find an
  68. # order dependency and want to debug it, you can fix the order by providing
  69. # the seed, which is printed after each run.
  70. # --seed 1234
  71. config.order = :random
  72. # Seed global randomization in this process using the `--seed` CLI option.
  73. # Setting this allows you to use `--seed` to deterministically reproduce
  74. # test failures related to randomization by passing the same `--seed` value
  75. # as the one that triggered the failure.
  76. Kernel.srand config.seed
  77. =end
  78. end