Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/rust/tests@950730d403bc032bb027e952f6313fca0a0680ef

Entrypoint

Return Type
Tests
Example
dagger -m github.com/sagikazarmark/daggerverse/rust/tests@950730d403bc032bb027e952f6313fca0a0680ef call \
func (m *MyModule) Example() *dagger.Tests  {
	return dag.
			Tests()
}
@function
def example() -> dagger.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/rust/tests@950730d403bc032bb027e952f6313fca0a0680ef 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()
}

build() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/rust/tests@950730d403bc032bb027e952f6313fca0a0680ef call \
 build
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Build(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.build()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.build()
}

buildWithChef() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/rust/tests@950730d403bc032bb027e952f6313fca0a0680ef call \
 build-with-chef
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			BuildWithChef(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.build_with_chef()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.buildWithChef()
}

test() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/rust/tests@950730d403bc032bb027e952f6313fca0a0680ef call \
 test
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Test(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.test()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.test()
}

check() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/rust/tests@950730d403bc032bb027e952f6313fca0a0680ef call \
 check
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Check(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.check()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.check()
}

format() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/rust/tests@950730d403bc032bb027e952f6313fca0a0680ef call \
 format
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Format(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.format()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.format()
}

formatCheck() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/rust/tests@950730d403bc032bb027e952f6313fca0a0680ef call \
 format-check
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			FormatCheck(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.format_check()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.formatCheck()
}

clippy() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/rust/tests@950730d403bc032bb027e952f6313fca0a0680ef call \
 clippy
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Clippy(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.clippy()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.clippy()
}

clippyFix() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/rust/tests@950730d403bc032bb027e952f6313fca0a0680ef call \
 clippy-fix
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			ClippyFix(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.clippy_fix()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.clippyFix()
}