cucumber-gherkin 15.0.2 → 20.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,18 +0,0 @@
1
- require 'rspec'
2
- require 'gherkin/stream/subprocess_message_stream'
3
-
4
- module Gherkin
5
- module Stream
6
- describe SubprocessMessageStream do
7
- it "works" do
8
- cucumber_messages = SubprocessMessageStream.new(
9
- "./bin/gherkin",
10
- ["testdata/good/minimal.feature"],
11
- true, true, true
12
- )
13
- messages = cucumber_messages.messages.to_a
14
- expect(messages.length).to eq(3)
15
- end
16
- end
17
- end
18
- end