Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/registry-config/tests@ccca98362d39b3df2dcb538d6b4864686b833ee3

Entrypoint

Return Type
Tests
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config/tests@ccca98362d39b3df2dcb538d6b4864686b833ee3 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 🔗

all() 🔗

All executes all tests.

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config/tests@ccca98362d39b3df2dcb538d6b4864686b833ee3 call \
 all
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			All(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.all()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.all()
}

withRegistryAuth() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config/tests@ccca98362d39b3df2dcb538d6b4864686b833ee3 call \
 with-registry-auth
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Withregistryauth(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.withregistryauth()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.withRegistryAuth()
}

withRegistryAuthMultipleCredentials() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config/tests@ccca98362d39b3df2dcb538d6b4864686b833ee3 call \
 with-registry-auth-multiple-credentials
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Withregistryauthmultiplecredentials(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.withregistryauthmultiplecredentials()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.withRegistryAuthMultipleCredentials()
}

withoutRegistryAuth() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config/tests@ccca98362d39b3df2dcb538d6b4864686b833ee3 call \
 without-registry-auth
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Withoutregistryauth(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.withoutregistryauth()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.withoutRegistryAuth()
}

secretMount() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config/tests@ccca98362d39b3df2dcb538d6b4864686b833ee3 call \
 secret-mount
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Secretmount(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.secretmount()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.secretMount()
}

secretMountSkipOnEmpty() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config/tests@ccca98362d39b3df2dcb538d6b4864686b833ee3 call \
 secret-mount-skip-on-empty
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Secretmountskiponempty(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.secretmountskiponempty()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.secretMountSkipOnEmpty()
}