Revert "add acceptance test"

This reverts commit ae09503df3.
This commit is contained in:
Joao Duarte 2016-06-17 10:01:47 +01:00
parent df4ac4d12e
commit c9b243da38

View file

@ -14,15 +14,9 @@ shared_examples "logstash version" do |logstash|
context "on #{logstash.hostname}" do
it "returns the right logstash version" do
result = logstash.run_command_in_path("bin/logstash --version")
result = logstash.run_command_in_path("bin/logstash --path.settings=/etc/logstash --version")
expect(result).to run_successfully_and_output(/#{LOGSTASH_VERSION}/)
end
context "when also using the --path.settings argument" do
it "returns the right logstash version" do
result = logstash.run_command_in_path("bin/logstash --path.settings=/etc/logstash --version")
expect(result).to run_successfully_and_output(/#{LOGSTASH_VERSION}/)
end
end
end
end
end