Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/purpleclay/daggerverse/shellcheck/tests@ee12c1a4a2630e194ec20c5a9959183e3a78c192

Entrypoint

Return Type
Tests
Example
dagger -m github.com/purpleclay/daggerverse/shellcheck/tests@ee12c1a4a2630e194ec20c5a9959183e3a78c192 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/shellcheck/tests@ee12c1a4a2630e194ec20c5a9959183e3a78c192 call \
 all-tests
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Alltests(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.alltests()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.allTests()
}

checkValidFile() 🔗

Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/shellcheck/tests@ee12c1a4a2630e194ec20c5a9959183e3a78c192 call \
 check-valid-file
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Checkvalidfile(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.checkvalidfile()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.checkValidFile()
}

checkInvalidFile() 🔗

Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/shellcheck/tests@ee12c1a4a2630e194ec20c5a9959183e3a78c192 call \
 check-invalid-file
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Checkinvalidfile(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.checkinvalidfile()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.checkInvalidFile()
}

checkInvalidFileWithInclude() 🔗

Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/shellcheck/tests@ee12c1a4a2630e194ec20c5a9959183e3a78c192 call \
 check-invalid-file-with-include
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Checkinvalidfilewithinclude(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.checkinvalidfilewithinclude()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.checkInvalidFileWithInclude()
}

checkInvalidFileWithExclude() 🔗

Return Type
Void !
Example
dagger -m github.com/purpleclay/daggerverse/shellcheck/tests@ee12c1a4a2630e194ec20c5a9959183e3a78c192 call \
 check-invalid-file-with-exclude
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Checkinvalidfilewithexclude(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.checkinvalidfilewithexclude()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.checkInvalidFileWithExclude()
}