We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f878455 commit ffffac8Copy full SHA for ffffac8
logstash-core/spec/logstash/runner_spec.rb
@@ -113,12 +113,11 @@ def run(args); end
113
expect(channel).to receive(:subscribe).with(kind_of(LogStash::Logging::JSON)).and_call_original
114
subject.run(args)
115
116
- # Log file should have stuff in it
+ # Log file should have stuff in it.
117
expect(logfile.stat.size).to be > 0
118
end
119
120
it "should log in valid json. One object per line." do
121
- # Log file should
122
logfile.each_line do |line|
123
expect(line).not_to be_empty
124
expect { JSON.parse(line) }.not_to raise_error
0 commit comments