tests
No long description provided.
Installation
dagger install github.com/purpleclay/daggerverse/helm-oci/tests@90adbf36767a096323f643cdc2df66c6a8af31d7Entrypoint
Return Type
TestsExample
dagger -m github.com/purpleclay/daggerverse/helm-oci/tests@90adbf36767a096323f643cdc2df66c6a8af31d7 call \
func (m *MyModule) Example() *dagger.Tests  {
	return dag.
			Tests()
}@function
def example() -> dagger.Tests:
	return (
		dag.tests()
	)@func()
example(): Tests {
	return dag
		.tests()
}Types
Tests 🔗
allTests() 🔗
Return Type
Void !Example
dagger -m github.com/purpleclay/daggerverse/helm-oci/tests@90adbf36767a096323f643cdc2df66c6a8af31d7 call \
 all-testsfunc (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			AllTests(ctx)
}@function
async def example() -> None:
	return await (
		dag.tests()
		.all_tests()
	)@func()
async example(): Promise<void> {
	return dag
		.tests()
		.allTests()
}dotEnv() 🔗
Return Type
Void !Example
dagger -m github.com/purpleclay/daggerverse/helm-oci/tests@90adbf36767a096323f643cdc2df66c6a8af31d7 call \
 dot-envfunc (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			DotEnv(ctx)
}@function
async def example() -> None:
	return await (
		dag.tests()
		.dot_env()
	)@func()
async example(): Promise<void> {
	return dag
		.tests()
		.dotEnv()
}dotEnvGitLab() 🔗
Return Type
Void !Example
dagger -m github.com/purpleclay/daggerverse/helm-oci/tests@90adbf36767a096323f643cdc2df66c6a8af31d7 call \
 dot-env-git-labfunc (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			DotEnvGitLab(ctx)
}@function
async def example() -> None:
	return await (
		dag.tests()
		.dot_env_git_lab()
	)@func()
async example(): Promise<void> {
	return dag
		.tests()
		.dotEnvGitLab()
}