tests
No long description provided.
Installation
dagger install github.com/sagikazarmark/daggerverse/xcaddy/tests@91ca51a0658f7122bc3277b1c8bf70cdfe9b57ea
Entrypoint
Return Type
Tests
Example
dagger -m github.com/sagikazarmark/daggerverse/xcaddy/tests@91ca51a0658f7122bc3277b1c8bf70cdfe9b57ea 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@91ca51a0658f7122bc3277b1c8bf70cdfe9b57ea 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@91ca51a0658f7122bc3277b1c8bf70cdfe9b57ea 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@91ca51a0658f7122bc3277b1c8bf70cdfe9b57ea 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@91ca51a0658f7122bc3277b1c8bf70cdfe9b57ea 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@91ca51a0658f7122bc3277b1c8bf70cdfe9b57ea 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@91ca51a0658f7122bc3277b1c8bf70cdfe9b57ea 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@91ca51a0658f7122bc3277b1c8bf70cdfe9b57ea 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@91ca51a0658f7122bc3277b1c8bf70cdfe9b57ea 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()
}