From e8842f861fb54570a0bcaf2178eaa172653743f9 Mon Sep 17 00:00:00 2001 From: Andy Feller Date: Thu, 17 Oct 2024 16:03:15 -0400 Subject: [PATCH] Add missing test to trigger acceptance tests --- acceptance/acceptance_test.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/acceptance/acceptance_test.go b/acceptance/acceptance_test.go index 35ea7b40b..ef8e85ddc 100644 --- a/acceptance/acceptance_test.go +++ b/acceptance/acceptance_test.go @@ -52,6 +52,15 @@ func TestSecrets(t *testing.T) { testscript.Run(t, testScriptParamsFor(tsEnv, "secret")) } +func TestVariables(t *testing.T) { + var tsEnv testScriptEnv + if err := tsEnv.fromEnv(); err != nil { + t.Fatal(err) + } + + testscript.Run(t, testScriptParamsFor(tsEnv, "variable")) +} + func testScriptParamsFor(tsEnv testScriptEnv, command string) testscript.Params { var files []string if tsEnv.script != "" {