mirror of
https://github.com/elastic/logstash.git
synced 2025-04-23 22:27:21 -04:00
This is the First pass to add the `integration` test for the CLI, the Logstash and the logstash-plugin command. Fixes #5259 Fixes #5350
9 lines
197 B
Ruby
9 lines
197 B
Ruby
# encoding: utf-8
|
|
require 'rspec/expectations'
|
|
require_relative '../helpers'
|
|
|
|
RSpec::Matchers.define :be_running do
|
|
match do |subject|
|
|
subject.running?(subject.hosts, subject.name)
|
|
end
|
|
end
|