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