Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/luanmtruong/daggerverse/archivist/tests@96c13b929c636316317f745ff36cda4e4c66f680

Entrypoint

Return Type
Tests
Example
dagger -m github.com/luanmtruong/daggerverse/archivist/tests@96c13b929c636316317f745ff36cda4e4c66f680 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/luanmtruong/daggerverse/archivist/tests@96c13b929c636316317f745ff36cda4e4c66f680 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()
}

tar() 🔗

Return Type
Void !
Example
dagger -m github.com/luanmtruong/daggerverse/archivist/tests@96c13b929c636316317f745ff36cda4e4c66f680 call \
 tar
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Tar(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.tar()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.tar()
}

tarBr() 🔗

Return Type
Void !
Example
dagger -m github.com/luanmtruong/daggerverse/archivist/tests@96c13b929c636316317f745ff36cda4e4c66f680 call \
 tar-br
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Tarbr(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.tarbr()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.tarBr()
}

tarBz2() 🔗

Return Type
Void !
Example
dagger -m github.com/luanmtruong/daggerverse/archivist/tests@96c13b929c636316317f745ff36cda4e4c66f680 call \
 tar-bz-2
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Tarbz2(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.tarbz2()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.tarBz2()
}

tarGz() 🔗

Return Type
Void !
Example
dagger -m github.com/luanmtruong/daggerverse/archivist/tests@96c13b929c636316317f745ff36cda4e4c66f680 call \
 tar-gz
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Targz(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.targz()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.tarGz()
}

tarLz4() 🔗

Return Type
Void !
Example
dagger -m github.com/luanmtruong/daggerverse/archivist/tests@96c13b929c636316317f745ff36cda4e4c66f680 call \
 tar-lz-4
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Tarlz4(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.tarlz4()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.tarLz4()
}

tarSz() 🔗

Return Type
Void !
Example
dagger -m github.com/luanmtruong/daggerverse/archivist/tests@96c13b929c636316317f745ff36cda4e4c66f680 call \
 tar-sz
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Tarsz(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.tarsz()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.tarSz()
}

tarXz() 🔗

Return Type
Void !
Example
dagger -m github.com/luanmtruong/daggerverse/archivist/tests@96c13b929c636316317f745ff36cda4e4c66f680 call \
 tar-xz
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Tarxz(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.tarxz()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.tarXz()
}

tarZst() 🔗

Return Type
Void !
Example
dagger -m github.com/luanmtruong/daggerverse/archivist/tests@96c13b929c636316317f745ff36cda4e4c66f680 call \
 tar-zst
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Tarzst(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.tarzst()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.tarZst()
}

zip() 🔗

Return Type
Void !
Example
dagger -m github.com/luanmtruong/daggerverse/archivist/tests@96c13b929c636316317f745ff36cda4e4c66f680 call \
 zip
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Zip(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.zip()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.zip()
}