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

rails_helper.rb 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # This file is copied to spec/ when you run 'rails generate rspec:install'
  2. ENV["RAILS_ENV"] ||= 'test'
  3. require 'spec_helper'
  4. require File.expand_path("../../config/environment", __FILE__)
  5. require 'rspec/rails'
  6. # Add additional requires below this line. Rails is not loaded until this point!
  7. # Requires supporting ruby files with custom matchers and macros, etc, in
  8. # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
  9. # run as spec files by default. This means that files in spec/support that end
  10. # in _spec.rb will both be required and run as specs, causing the specs to be
  11. # run twice. It is recommended that you do not name files matching this glob to
  12. # end with _spec.rb. You can configure this pattern with the --pattern
  13. # option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
  14. #
  15. # The following line is provided for convenience purposes. It has the downside
  16. # of increasing the boot-up time by auto-requiring all files in the support
  17. # directory. Alternatively, in the individual `*_spec.rb` files, manually
  18. # require only the support files necessary.
  19. #
  20. # Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
  21. # Checks for pending migrations before tests are run.
  22. # If you are not using ActiveRecord, you can remove this line.
  23. ActiveRecord::Migration.check_pending!
  24. RSpec.configure do |config|
  25. # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
  26. config.fixture_path = "#{::Rails.root}/spec/fixtures"
  27. # If you're not using ActiveRecord, or you'd prefer not to run each of your
  28. # examples within a transaction, remove the following line or assign false
  29. # instead of true.
  30. config.use_transactional_fixtures = true
  31. # RSpec Rails can automatically mix in different behaviours to your tests
  32. # based on their file location, for example enabling you to call `get` and
  33. # `post` in specs under `spec/controllers`.
  34. #
  35. # You can disable this behaviour by removing the line below, and instead
  36. # explicitly tag your specs with their type, e.g.:
  37. #
  38. # RSpec.describe UsersController, :type => :controller do
  39. # # ...
  40. # end
  41. #
  42. # The different available types are documented in the features, such as in
  43. # https://relishapp.com/rspec/rspec-rails/docs
  44. config.infer_spec_type_from_file_location!
  45. end