brew/Library/Homebrew/test/support/quiet_progress_formatter.rb

13 lines
322 B
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: true
# frozen_string_literal: true
require "rspec/core/formatters/progress_formatter"
class QuietProgressFormatter < RSpec::Core::Formatters::ProgressFormatter
RSpec::Core::Formatters.register self, :seed
def dump_summary(notification); end
def seed(notification); end
def close(notification); end
end