From 28c1019657b08f278fa9266dd3c41fbb1d8087aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 29 Jun 2018 13:54:12 -0300 Subject: [PATCH] Skip exit status specs on 1.8.7 --- spec/script_exit_status_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/script_exit_status_spec.rb b/spec/script_exit_status_spec.rb index cbb6ded46..45e04148b 100644 --- a/spec/script_exit_status_spec.rb +++ b/spec/script_exit_status_spec.rb @@ -26,4 +26,4 @@ def thor_command(command) it "a command that does not raise a Thor::Error exits with a status of 0" do expect(thor_command("ok")).to eq(0) end -end +end if RUBY_VERSION > "1.8.7"