tests
No long description provided.
Installation
dagger install github.com/purpleclay/daggerverse/helm-oci/tests@cc1ad626b8b0eae61133a9073bd730bb2e7ae984
Entrypoint
Return Type
Tests
Example
dagger -m github.com/purpleclay/daggerverse/helm-oci/tests@cc1ad626b8b0eae61133a9073bd730bb2e7ae984 call \
func (m *myModule) example() *Tests {
return dag.
Tests()
}
@function
def example() -> dag.Tests:
return (
dag.tests()
)
@func()
example(): Tests {
return dag
.tests()
}
Types
Tests 🔗
allTests() 🔗
Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/helm-oci/tests@cc1ad626b8b0eae61133a9073bd730bb2e7ae984 call \
all-tests
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
AllTests(ctx)
}
@function
async def example() -> None:
return await (
dag.tests()
.all_tests()
)
@func()
async example(): Promise<void> {
return dag
.tests()
.allTests()
}
dotEnv() 🔗
Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/helm-oci/tests@cc1ad626b8b0eae61133a9073bd730bb2e7ae984 call \
dot-env
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
DotEnv(ctx)
}
@function
async def example() -> None:
return await (
dag.tests()
.dot_env()
)
@func()
async example(): Promise<void> {
return dag
.tests()
.dotEnv()
}
dotEnvGitLab() 🔗
Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/helm-oci/tests@cc1ad626b8b0eae61133a9073bd730bb2e7ae984 call \
dot-env-git-lab
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
DotEnvGitLab(ctx)
}
@function
async def example() -> None:
return await (
dag.tests()
.dot_env_git_lab()
)
@func()
async example(): Promise<void> {
return dag
.tests()
.dotEnvGitLab()
}