Sha256: 641da3e216bb9b6ea81d86c6618e20b9312933adc9f100a0b7297ec0cbba8ae0
Contents?: true
Size: 491 Bytes
Versions: 28
Compression:
Stored size: 491 Bytes
Contents
require 'cucumber/formatter/gherkin_formatter_adapter' require 'cucumber/formatter/io' require 'gherkin/formatter/argument' require 'gherkin/formatter/json_formatter' module Cucumber module Formatter # The formatter used for <tt>--format json</tt> class Json < GherkinFormatterAdapter include Io def initialize(step_mother, io, options) @io = ensure_io(io, "json") super(Gherkin::Formatter::JSONFormatter.new(@io), false) end end end end
Version data entries
28 entries across 26 versions & 8 rubygems