Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/xcaddy/tests@8ed67672262b2923d047ebd152f9a192012776b9

Entrypoint

Return Type
Tests
Example
dagger -m github.com/sagikazarmark/daggerverse/xcaddy/tests@8ed67672262b2923d047ebd152f9a192012776b9 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 🔗

all() 🔗

All executes all tests.

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/xcaddy/tests@8ed67672262b2923d047ebd152f9a192012776b9 call \
 all
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			All(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.all()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.all()
}

test() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/xcaddy/tests@8ed67672262b2923d047ebd152f9a192012776b9 call \
 test
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			Test(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.test()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.test()
}

version() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/xcaddy/tests@8ed67672262b2923d047ebd152f9a192012776b9 call \
 version
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			Version(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.version()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.version()
}

plugin() 🔗

Return Type
Plugin !
Example
dagger -m github.com/sagikazarmark/daggerverse/xcaddy/tests@8ed67672262b2923d047ebd152f9a192012776b9 call \
 plugin
func (m *myModule) example() *TestsPlugin  {
	return dag.
			Tests().
			Plugin()
}
@function
def example() -> dag.TestsPlugin:
	return (
		dag.tests()
		.plugin()
	)
@func()
example(): TestsPlugin {
	return dag
		.tests()
		.plugin()
}

Plugin 🔗

all() 🔗

All executes all tests.

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/xcaddy/tests@8ed67672262b2923d047ebd152f9a192012776b9 call \
 plugin \
 all
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			Plugin().
			All(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.plugin()
		.all()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.plugin()
		.all()
}

module() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/xcaddy/tests@8ed67672262b2923d047ebd152f9a192012776b9 call \
 plugin \
 module
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			Plugin().
			Module(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.plugin()
		.module()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.plugin()
		.module()
}

version() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/xcaddy/tests@8ed67672262b2923d047ebd152f9a192012776b9 call \
 plugin \
 version
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			Plugin().
			Version(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.plugin()
		.version()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.plugin()
		.version()
}

replacement() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/xcaddy/tests@8ed67672262b2923d047ebd152f9a192012776b9 call \
 plugin \
 replacement
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			Plugin().
			Replacement(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.plugin()
		.replacement()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.plugin()
		.replacement()
}