Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/helm/tests@f8372274fbf39309e6373f37c75ef7d153dd6a47

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)
}