From 2d576f29339561855b7bad83e9521c7d512c4526 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Tue, 18 Jul 2017 17:49:21 +0100 Subject: [PATCH] Travis debugging --- test/yast2_test.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/yast2_test.rb b/test/yast2_test.rb index a0c0bdeb5..8022e5a92 100755 --- a/test/yast2_test.rb +++ b/test/yast2_test.rb @@ -5,11 +5,13 @@ require "cheetah" additional_y2dir = File.expand_path("../test_y2dir", __FILE__) -ENV["Y2DIR"] += ":#{additional_y2dir}" TEST_DIR = File.expand_path("../../scripts", __FILE__) describe "yast2 script" do it "pass properly all arguments" do +ENV["Y2DIR"] += ":#{additional_y2dir}" + puts "DEBUG", additional_y2dir + puts "DEBUG", ENV["Y2DIR"].inspect Cheetah.run(TEST_DIR + "/yast2", "args_test_client", 'abc"\'\\|;&<>! ', "second", env: { "TESTING_YAST2" => "1" }) end end