Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/psql/tests@2259f8f4037cf88069ab38e3e0de7d154994af3b

Entrypoint

Return Type
Tests
Example
dagger -m github.com/sagikazarmark/daggerverse/psql/tests@2259f8f4037cf88069ab38e3e0de7d154994af3b call \
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/psql/tests@2259f8f4037cf88069ab38e3e0de7d154994af3b 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()
}

list() 🔗

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

runCommand() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/psql/tests@2259f8f4037cf88069ab38e3e0de7d154994af3b call \
 run-command
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			RunCommand(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.run_command()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.runCommand()
}

runFile() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/psql/tests@2259f8f4037cf88069ab38e3e0de7d154994af3b call \
 run-file
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			RunFile(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.run_file()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.runFile()
}

run() 🔗

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