tests
No long description provided.
Installation
dagger install github.com/sagikazarmark/daggerverse/psql/tests@a8744cd084c1877c3802a2e5fd648941ab48617d
Types
Tests 🔗
all() 🔗
All executes all tests.
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
All(ctx)
}
list() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
List(ctx)
}
runCommand() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
RunCommand(ctx)
}
runFile() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
RunFile(ctx)
}
run() 🔗
Return Type
Void !
Example
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
Run(ctx)
}