Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/purpleclay/daggerverse/netrc/tests@cc1ad626b8b0eae61133a9073bd730bb2e7ae984

Entrypoint

Return Type
Tests
Example
dagger -m github.com/purpleclay/daggerverse/netrc/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/netrc/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()
}

withLogin() 🔗

Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/netrc/tests@cc1ad626b8b0eae61133a9073bd730bb2e7ae984 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@cc1ad626b8b0eae61133a9073bd730bb2e7ae984 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@cc1ad626b8b0eae61133a9073bd730bb2e7ae984 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()
}