rspec_extensions.rb 344 B

12345678910
  1. # Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
  2. # Small patch for rspec: don't treat --example-matches/-E as a standalone
  3. # filter that suppresses other exclusion filters, but combine all filters instead.
  4. require 'rspec/core/filter_manager'
  5. class RSpec::Core::InclusionRules
  6. def standalone?
  7. false
  8. end
  9. end