Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/purpleclay/daggerverse/kubeconform/tests@d6fee91609725eda84aba5e65c87bd2f4ec20722

Entrypoint

Return Type
Tests
Example
dagger -m github.com/purpleclay/daggerverse/kubeconform/tests@d6fee91609725eda84aba5e65c87bd2f4ec20722 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/kubeconform/tests@d6fee91609725eda84aba5e65c87bd2f4ec20722 call \
 all-tests
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Alltests(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.alltests()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.allTests()
}

validate() 🔗

Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/kubeconform/tests@d6fee91609725eda84aba5e65c87bd2f4ec20722 call \
 validate
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Validate(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.validate()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.validate()
}

validateWithCustomSchema() 🔗

Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/kubeconform/tests@d6fee91609725eda84aba5e65c87bd2f4ec20722 call \
 validate-with-custom-schema
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Validatewithcustomschema(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.validatewithcustomschema()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.validateWithCustomSchema()
}

validateWithLocalCrds() 🔗

Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/kubeconform/tests@d6fee91609725eda84aba5e65c87bd2f4ec20722 call \
 validate-with-local-crds
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Validatewithlocalcrds(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.validatewithlocalcrds()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.validateWithLocalCrds()
}

validateWithRemoteCrds() 🔗

Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/kubeconform/tests@d6fee91609725eda84aba5e65c87bd2f4ec20722 call \
 validate-with-remote-crds
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Validatewithremotecrds(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.validatewithremotecrds()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.validateWithRemoteCrds()
}

validateDirectory() 🔗

Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/kubeconform/tests@d6fee91609725eda84aba5e65c87bd2f4ec20722 call \
 validate-directory
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Validatedirectory(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.validatedirectory()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.validateDirectory()
}

validateInvalidFile() 🔗

Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/kubeconform/tests@d6fee91609725eda84aba5e65c87bd2f4ec20722 call \
 validate-invalid-file
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Validateinvalidfile(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.validateinvalidfile()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.validateInvalidFile()
}