tests
No long description provided.
Installation
dagger install github.com/purpleclay/daggerverse/netrc/tests@b83dd17218042d97e1291d0d500490e3f0f476d7Entrypoint
Return Type
Tests Example
dagger -m github.com/purpleclay/daggerverse/netrc/tests@b83dd17218042d97e1291d0d500490e3f0f476d7 call \
func (m *MyModule) Example() *dagger.Tests  {
	return dag.
			Tests()
}@function
def example() -> dagger.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@b83dd17218042d97e1291d0d500490e3f0f476d7 call \
 all-testsfunc (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@b83dd17218042d97e1291d0d500490e3f0f476d7 call \
 with-loginfunc (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@b83dd17218042d97e1291d0d500490e3f0f476d7 call \
 with-filefunc (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@b83dd17218042d97e1291d0d500490e3f0f476d7 call \
 with-file-invalidfunc (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()
}