(t *testing.T)
| 105 | } |
| 106 | |
| 107 | func TestOrg(t *testing.T) { |
| 108 | var tsEnv testScriptEnv |
| 109 | if err := tsEnv.fromEnv(); err != nil { |
| 110 | t.Fatal(err) |
| 111 | } |
| 112 | |
| 113 | testscript.Run(t, testScriptParamsFor(tsEnv, "org")) |
| 114 | } |
| 115 | |
| 116 | func TestProject(t *testing.T) { |
| 117 | var tsEnv testScriptEnv |
nothing calls this directly
no test coverage detected