Sha256: 9442ab054bd337341b1aefec361deec7341efa579736eae59a99c74094dfd0a9
Contents?: true
Size: 570 Bytes
Versions: 69
Compression:
Stored size: 570 Bytes
Contents
require 'gherkin/parser/parser' require 'gherkin/formatter/json_formatter' require 'stringio' require 'json' # This example reads a couple of features and outputs them as JSON. io = StringIO.new formatter = Gherkin::Formatter::JSONFormatter.new(io) parser = Gherkin::Parser::Parser.new(formatter) sources = ["features/native_lexer.feature", "features/escaped_pipes.feature"] sources.each do |s| path = File.expand_path(File.dirname(__FILE__) + '/../' + s) parser.parse(IO.read(path), path, 0) end formatter.close puts JSON.pretty_generate(JSON.parse(io.string))
Version data entries
69 entries across 68 versions & 4 rubygems