API de comptabilité horaire.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test.rb 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. require "active_support/core_ext/integer/time"
  2. # The test environment is used exclusively to run your application's
  3. # test suite. You never need to work with it otherwise. Remember that
  4. # your test database is "scratch space" for the test suite and is wiped
  5. # and recreated between test runs. Don't rely on the data there!
  6. Rails.application.configure do
  7. # Settings specified here will take precedence over those in config/application.rb.
  8. config.cache_classes = false
  9. config.action_view.cache_template_loading = true
  10. # Do not eager load code on boot. This avoids loading your whole application
  11. # just for the purpose of running a single test. If you are using a tool that
  12. # preloads Rails for running tests, you may have to set it to true.
  13. config.eager_load = false
  14. # Configure public file server for tests with Cache-Control for performance.
  15. config.public_file_server.enabled = true
  16. config.public_file_server.headers = {
  17. 'Cache-Control' => "public, max-age=#{1.hour.to_i}"
  18. }
  19. # Show full error reports and disable caching.
  20. config.consider_all_requests_local = true
  21. config.action_controller.perform_caching = false
  22. config.cache_store = :null_store
  23. # Raise exceptions instead of rendering exception templates.
  24. config.action_dispatch.show_exceptions = false
  25. # Disable request forgery protection in test environment.
  26. config.action_controller.allow_forgery_protection = false
  27. # Store uploaded files on the local file system in a temporary directory.
  28. config.active_storage.service = :test
  29. config.action_mailer.perform_caching = false
  30. # Tell Action Mailer not to deliver emails to the real world.
  31. # The :test delivery method accumulates sent emails in the
  32. # ActionMailer::Base.deliveries array.
  33. config.action_mailer.delivery_method = :test
  34. # Print deprecation notices to the stderr.
  35. config.active_support.deprecation = :stderr
  36. # Raise exceptions for disallowed deprecations.
  37. config.active_support.disallowed_deprecation = :raise
  38. # Tell Active Support which deprecation messages to disallow.
  39. config.active_support.disallowed_deprecation_warnings = []
  40. # Raises error for missing translations.
  41. # config.i18n.raise_on_missing_translations = true
  42. # Annotate rendered view with file names.
  43. # config.action_view.annotate_rendered_view_with_filenames = true
  44. end