tests
No long description provided.
Installation
dagger install github.com/sagikazarmark/daggerverse/psql/tests@be9e05960867cbb33d074a53a018211bf7600831
Entrypoint
Return Type
Tests
Example
dagger -m github.com/sagikazarmark/daggerverse/psql/tests@be9e05960867cbb33d074a53a018211bf7600831 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@be9e05960867cbb33d074a53a018211bf7600831 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@be9e05960867cbb33d074a53a018211bf7600831 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@be9e05960867cbb33d074a53a018211bf7600831 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@be9e05960867cbb33d074a53a018211bf7600831 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@be9e05960867cbb33d074a53a018211bf7600831 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()
}