Dagger
Search

tests

No long description provided.

Installation

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

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@d8b5409dc45cc2242792566059f18cb1e5488629 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@d8b5409dc45cc2242792566059f18cb1e5488629 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@d8b5409dc45cc2242792566059f18cb1e5488629 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()
}

login() 🔗

TODO: improve this test

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

package() 🔗

TODO: improve this test

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/helm/tests@d8b5409dc45cc2242792566059f18cb1e5488629 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()
}

push() 🔗

TODO: improve this test

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

chartLint() 🔗

TODO: improve this test

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

chartPackage() 🔗

TODO: improve this test

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

chartPublish() 🔗

TODO: improve this test

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