Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/postgres/tests@322b00485bc195163df4b81f22e52c5b2ca43472

Entrypoint

Return Type
Tests
Example
func (m *myModule) example() *Tests  {
	return dag.
			Tests()
}

Types

Tests 🔗

all() 🔗

All executes all tests.

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			All(ctx)
}

basic() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			Basic(ctx)
}

withDatabase() 🔗

Return Type
Void !
Example
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			WithDatabase(ctx)
}