(ctx context.Context, t *testctx.T, ctr *dagger.Container)
| 8389 | `) |
| 8390 | |
| 8391 | func inspectModule(ctx context.Context, t *testctx.T, ctr *dagger.Container) gjson.Result { |
| 8392 | t.Helper() |
| 8393 | out, err := ctr.With(moduleIntrospection).Stdout(ctx) |
| 8394 | require.NoError(t, err) |
| 8395 | result := gjson.Get(out, "host.directory.asModule") |
| 8396 | t.Logf("module introspection:\n%v", result.Raw) |
| 8397 | return result |
| 8398 | } |
| 8399 | |
| 8400 | func inspectModuleObjects(ctx context.Context, t *testctx.T, ctr *dagger.Container) gjson.Result { |
| 8401 | t.Helper() |
no test coverage detected