(t *testing.T)
| 86 | } |
| 87 | |
| 88 | func TestGists(t *testing.T) { |
| 89 | var tsEnv testScriptEnv |
| 90 | if err := tsEnv.fromEnv(); err != nil { |
| 91 | t.Fatal(err) |
| 92 | } |
| 93 | |
| 94 | testscript.Run(t, testScriptParamsFor(t, tsEnv, "gist")) |
| 95 | } |
| 96 | |
| 97 | func TestGPGKeys(t *testing.T) { |
| 98 | var tsEnv testScriptEnv |
nothing calls this directly
no test coverage detected