blob: e87a58143c6d3a87024297dd0399da53e57cada6 (
plain)
1
2
3
4
5
6
7
|
require "rspec/core/formatters/progress_formatter"
class NoSeedProgressFormatter < RSpec::Core::Formatters::ProgressFormatter
RSpec::Core::Formatters.register self, :seed
def seed(notification); end
end
|