spec/spec_helper.rb in rspec-its-1.3.1 vs spec/spec_helper.rb in rspec-its-2.0.0

- old
+ new

@@ -1,11 +1,18 @@ +# frozen_string_literal: true + require 'rspec/its' -Dir['./spec/support/**/*'].each {|f| require f} +Dir['./spec/support/**/*'].each { |f| require f } class NullFormatter private + def method_missing(method, *args, &block) + # ignore + end + + def respond_to_missing?(method, *args, &block) # ignore end end RSpec.configure do |config|