Sha256: a42dde579efa4aa82ba18bb8e75fa556b2f96fe11959c36966816676cf579b08
Contents?: true
Size: 279 Bytes
Versions: 6
Compression:
Stored size: 279 Bytes
Contents
# frozen_string_literal: true module Cucumber module Formatter class URLReporter def initialize(io) @io = io end def report(banner) @io.puts(banner) end end class NoReporter def report(banner); end end end end
Version data entries
6 entries across 6 versions & 2 rubygems