Dagger
Search

tests

No long description provided.

Installation

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

Entrypoint

Return Type
Tests
Example
func (m *myModule) example() *Tests  {
	return dag.
			Tests()
}
@function
def example() -> dag.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/helm/tests@c56edc83a9245de0b44edcd8bd339142b2f6f02e 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()
}

create() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/helm/tests@c56edc83a9245de0b44edcd8bd339142b2f6f02e call \
 create
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			Create(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.create()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.create()
}

lint() 🔗

TODO: improve this test

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/helm/tests@c56edc83a9245de0b44edcd8bd339142b2f6f02e call \
 lint
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			Lint(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.lint()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.lint()
}

lintOld() 🔗

TODO: improve this test TODO: improve naming

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/helm/tests@c56edc83a9245de0b44edcd8bd339142b2f6f02e call \
 lint-old
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			LintOld(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.lint_old()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.lintOld()
}

package() 🔗

TODO: improve this test

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/helm/tests@c56edc83a9245de0b44edcd8bd339142b2f6f02e call \
 package
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			Package(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.package()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.package()
}

packageOld() 🔗

TODO: improve this test

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/helm/tests@c56edc83a9245de0b44edcd8bd339142b2f6f02e call \
 package-old
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			PackageOld(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.package_old()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.packageOld()
}

loginAndPush() 🔗

TODO: improve this test

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/helm/tests@c56edc83a9245de0b44edcd8bd339142b2f6f02e call \
 login-and-push
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			LoginAndPush(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.login_and_push()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.loginAndPush()
}

loginAndPushOld() 🔗

TODO: improve this test

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/helm/tests@c56edc83a9245de0b44edcd8bd339142b2f6f02e call \
 login-and-push-old
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			LoginAndPushOld(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.login_and_push_old()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.loginAndPushOld()
}