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