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