Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/purpleclay/daggerverse/kubeconform/tests@1595674da72a393b50a27011275f8d1a1529a505

Entrypoint

Return Type
Tests
Example
func (m *myModule) example() *Tests  {
	return dag.
			Tests()
}

Types

Tests 🔗

allTests() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			AllTests(ctx)
}

validate() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			Validate(ctx)
}

validateWithCustomSchema() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ValidateWithCustomSchema(ctx)
}

validateWithLocalCrds() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ValidateWithLocalCrds(ctx)
}

validateWithRemoteCrds() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ValidateWithRemoteCrds(ctx)
}

validateDirectory() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ValidateDirectory(ctx)
}

validateInvalidFile() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ValidateInvalidFile(ctx)
}