(ctx context.Context, t *testctx.T)
| 522 | } |
| 523 | |
| 524 | func (ShellSuite) TestNotExists(ctx context.Context, t *testctx.T) { |
| 525 | c := connect(ctx, t) |
| 526 | _, err := modInit(t, c, "go", ""). |
| 527 | With(daggerShell("i-dont-exist")). |
| 528 | Sync(ctx) |
| 529 | requireErrOut(t, err, "\"i-dont-exist\" does not exist") |
| 530 | } |
| 531 | |
| 532 | func (ShellSuite) TestIntegerArg(ctx context.Context, t *testctx.T) { |
| 533 | c := connect(ctx, t) |
nothing calls this directly
no test coverage detected