tests
No long description provided.
Installation
dagger install github.com/sagikazarmark/daggerverse/psql/tests@1f3e995ef0136aca2745c618737ca08100748aac
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)
}