(ctx context.Context, t testing.TB, c *dagger.Client, content string, username string, token *dagger.Secret)
| 2371 | } |
| 2372 | |
| 2373 | func httpServiceAuth(ctx context.Context, t testing.TB, c *dagger.Client, content string, username string, token *dagger.Secret) (*dagger.Service, string) { |
| 2374 | return httpServiceDirAuth(ctx, t, c, "", c.Directory().WithNewFile("index.html", content), username, token) |
| 2375 | } |
| 2376 | |
| 2377 | func httpServiceDirAuth(ctx context.Context, t testing.TB, c *dagger.Client, hostname string, dir *dagger.Directory, username string, token *dagger.Secret) (*dagger.Service, string) { |
| 2378 | t.Helper() |
no test coverage detected