Sha256: 7a8b8169c154b0d39bbcfb26bd651bfd0f19343092ee8f296313227a060624ac

Contents?: true

Size: 1.29 KB

Versions: 3

Compression:

Stored size: 1.29 KB

Contents

# frozen_string_literal: true

ENV['RAILS_ENV'] = 'test'

require_relative 'dummy/config/environment'

require 'rspec/rails'
require 'spec_helper'
require 'fuubar'
require 'rspec-html-matchers'

RSpec.configure do |config|
  # RSpec Rails can automatically mix in different behaviours to your tests
  # based on their file location, for example enabling you to call `get` and
  # `post` in specs under `spec/controllers`.
  #
  # You can disable this behaviour by removing the line below, and instead
  # explicitly tag your specs with their type, e.g.:
  #
  #     RSpec.describe UsersController, :type => :controller do
  #       # ...
  #     end
  #
  # The different available types are documented in the features, such as in
  # https://relishapp.com/rspec/rspec-rails/docs
  config.infer_spec_type_from_file_location!

  # Filter lines from Rails gems in backtraces.
  config.filter_rails_from_backtrace!
  # arbitrary gems may also be filtered via:
  # config.filter_gems_from_backtrace("gem name")

  config.fuubar_progress_bar_options = { format: "Rails: #{::Rails::VERSION::STRING}  %c/%C |%w>%i| %e " }

  config.define_derived_metadata(file_path: %r{/spec/action_view/}) do |metadata|
    metadata[:type] = :view
  end

  config.include Bemer::Test::ConfigurationHelpers
  config.include RSpecHtmlMatchers
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bemer-0.6.0 spec/rails_helper.rb
bemer-0.5.0 spec/rails_helper.rb
bemer-0.4.0 spec/rails_helper.rb