(t *testing.T)
| 77 | } |
| 78 | |
| 79 | func TestAuth(t *testing.T) { |
| 80 | var tsEnv testScriptEnv |
| 81 | if err := tsEnv.fromEnv(); err != nil { |
| 82 | t.Fatal(err) |
| 83 | } |
| 84 | |
| 85 | testscript.Run(t, testScriptParamsFor(t, tsEnv, "auth")) |
| 86 | } |
| 87 | |
| 88 | func TestGists(t *testing.T) { |
| 89 | var tsEnv testScriptEnv |
nothing calls this directly
no test coverage detected