Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/helm/tests@1f12082527c54b71b04987121f788a62ba5cb002

Entrypoint

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

Types

Tests 🔗

all() 🔗

All executes all tests.

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

create() 🔗

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

lint() 🔗

TODO: improve this test

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

lintOld() 🔗

TODO: improve this test TODO: improve naming

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

package() 🔗

TODO: improve this test

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

packageOld() 🔗

TODO: improve this test

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

loginAndPush() 🔗

TODO: improve this test

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

loginAndPushOld() 🔗

TODO: improve this test

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