(t *testing.T)
| 42 | } |
| 43 | |
| 44 | func TestAuth(t *testing.T) { |
| 45 | var tsEnv testScriptEnv |
| 46 | if err := tsEnv.fromEnv(); err != nil { |
| 47 | t.Fatal(err) |
| 48 | } |
| 49 | |
| 50 | testscript.Run(t, testScriptParamsFor(tsEnv, "auth")) |
| 51 | } |
| 52 | |
| 53 | func TestGPGKeys(t *testing.T) { |
| 54 | var tsEnv testScriptEnv |
nothing calls this directly
no test coverage detected