tests
No long description provided.
Installation
dagger install github.com/purpleclay/daggerverse/netrc/tests@a6c5da1e8915e1497b6199580c5ff41ef0ab6223
Entrypoint
Return Type
Tests
Example
dagger -m github.com/purpleclay/daggerverse/netrc/tests@a6c5da1e8915e1497b6199580c5ff41ef0ab6223 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/netrc/tests@a6c5da1e8915e1497b6199580c5ff41ef0ab6223 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()
}
withLogin() 🔗
Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/netrc/tests@a6c5da1e8915e1497b6199580c5ff41ef0ab6223 call \
with-login
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
WithLogin(ctx)
}
@function
async def example() -> None:
return await (
dag.tests()
.with_login()
)
@func()
async example(): Promise<void> {
return dag
.tests()
.withLogin()
}
withFile() 🔗
Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/netrc/tests@a6c5da1e8915e1497b6199580c5ff41ef0ab6223 call \
with-file
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
WithFile(ctx)
}
@function
async def example() -> None:
return await (
dag.tests()
.with_file()
)
@func()
async example(): Promise<void> {
return dag
.tests()
.withFile()
}
withFileInvalid() 🔗
Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/netrc/tests@a6c5da1e8915e1497b6199580c5ff41ef0ab6223 call \
with-file-invalid
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
WithFileInvalid(ctx)
}
@function
async def example() -> None:
return await (
dag.tests()
.with_file_invalid()
)
@func()
async example(): Promise<void> {
return dag
.tests()
.withFileInvalid()
}