Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/z5labs/devex/daggerverse/random/tests@9ebfb29b95cb654ed5d00d1e595bcf710c2a7318

Entrypoint

Return Type
Tests
Example
dagger -m github.com/z5labs/devex/daggerverse/random/tests@9ebfb29b95cb654ed5d00d1e595bcf710c2a7318 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() 🔗

Return Type
Void !
Example
dagger -m github.com/z5labs/devex/daggerverse/random/tests@9ebfb29b95cb654ed5d00d1e595bcf710c2a7318 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()
}

serialShouldNotBeCached() 🔗

Return Type
Void !
Example
dagger -m github.com/z5labs/devex/daggerverse/random/tests@9ebfb29b95cb654ed5d00d1e595bcf710c2a7318 call \
 serial-should-not-be-cached
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			SerialShouldNotBeCached(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.serial_should_not_be_cached()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.serialShouldNotBeCached()
}

sha256ShouldNotBeCached() 🔗

Return Type
Void !
Example
dagger -m github.com/z5labs/devex/daggerverse/random/tests@9ebfb29b95cb654ed5d00d1e595bcf710c2a7318 call \
 sha-2-5-6-should-not-be-cached
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Sha256ShouldNotBeCached(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.sha256_should_not_be_cached()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.sha256ShouldNotBeCached()
}

sha512ShouldNotBeCached() 🔗

Return Type
Void !
Example
dagger -m github.com/z5labs/devex/daggerverse/random/tests@9ebfb29b95cb654ed5d00d1e595bcf710c2a7318 call \
 sha-5-1-2-should-not-be-cached
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Sha512ShouldNotBeCached(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.sha512_should_not_be_cached()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.sha512ShouldNotBeCached()
}

uuidV4ShouldNotBeCached() 🔗

Return Type
Void !
Example
dagger -m github.com/z5labs/devex/daggerverse/random/tests@9ebfb29b95cb654ed5d00d1e595bcf710c2a7318 call \
 uuid-v-4-should-not-be-cached
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			UuidV4ShouldNotBeCached(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.uuid_v4_should_not_be_cached()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.uuidV4ShouldNotBeCached()
}

uuidV7ShouldNotBeCached() 🔗

Return Type
Void !
Example
dagger -m github.com/z5labs/devex/daggerverse/random/tests@9ebfb29b95cb654ed5d00d1e595bcf710c2a7318 call \
 uuid-v-7-should-not-be-cached
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			UuidV7ShouldNotBeCached(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.uuid_v7_should_not_be_cached()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.uuidV7ShouldNotBeCached()
}