Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/arc/tests@51f987ed6cd739e7cd845016591df5be9358205b

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

archiveFiles() 🔗

Return Type
ArchiveFiles !
Example
func (m *myModule) example() *TestsArchiveFiles  {
	return dag.
			Tests().
			ArchiveFiles()
}
@function
def example() -> dag.TestsArchiveFiles:
	return (
		dag.tests()
		.archive_files()
	)
@func()
example(): TestsArchiveFiles {
	return dag
		.tests()
		.archiveFiles()
}

archiveDirectory() 🔗

Return Type
ArchiveDirectory !
Example
func (m *myModule) example() *TestsArchiveDirectory  {
	return dag.
			Tests().
			ArchiveDirectory()
}
@function
def example() -> dag.TestsArchiveDirectory:
	return (
		dag.tests()
		.archive_directory()
	)
@func()
example(): TestsArchiveDirectory {
	return dag
		.tests()
		.archiveDirectory()
}

ArchiveFiles 🔗

all() 🔗

All executes all tests.

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveFiles().
			All(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_files()
		.all()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveFiles()
		.all()
}

tar() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveFiles().
			Tar(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_files()
		.tar()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveFiles()
		.tar()
}

tarBr() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveFiles().
			TarBr(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_files()
		.tar_br()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveFiles()
		.tarBr()
}

tarBz2() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveFiles().
			TarBz2(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_files()
		.tar_bz2()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveFiles()
		.tarBz2()
}

tarGz() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveFiles().
			TarGz(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_files()
		.tar_gz()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveFiles()
		.tarGz()
}

tarLz4() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveFiles().
			TarLz4(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_files()
		.tar_lz4()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveFiles()
		.tarLz4()
}

tarSz() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveFiles().
			TarSz(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_files()
		.tar_sz()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveFiles()
		.tarSz()
}

tarXz() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveFiles().
			TarXz(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_files()
		.tar_xz()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveFiles()
		.tarXz()
}

tarZst() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveFiles().
			TarZst(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_files()
		.tar_zst()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveFiles()
		.tarZst()
}

zip() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveFiles().
			Zip(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_files()
		.zip()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveFiles()
		.zip()
}

ArchiveDirectory 🔗

all() 🔗

All executes all tests.

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveDirectory().
			All(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_directory()
		.all()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveDirectory()
		.all()
}

tar() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveDirectory().
			Tar(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_directory()
		.tar()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveDirectory()
		.tar()
}

tarBr() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveDirectory().
			TarBr(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_directory()
		.tar_br()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveDirectory()
		.tarBr()
}

tarBz2() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveDirectory().
			TarBz2(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_directory()
		.tar_bz2()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveDirectory()
		.tarBz2()
}

tarGz() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveDirectory().
			TarGz(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_directory()
		.tar_gz()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveDirectory()
		.tarGz()
}

tarLz4() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveDirectory().
			TarLz4(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_directory()
		.tar_lz4()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveDirectory()
		.tarLz4()
}

tarSz() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveDirectory().
			TarSz(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_directory()
		.tar_sz()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveDirectory()
		.tarSz()
}

tarXz() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveDirectory().
			TarXz(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_directory()
		.tar_xz()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveDirectory()
		.tarXz()
}

tarZst() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveDirectory().
			TarZst(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_directory()
		.tar_zst()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveDirectory()
		.tarZst()
}

zip() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			ArchiveDirectory().
			Zip(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.archive_directory()
		.zip()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.archiveDirectory()
		.zip()
}