You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
crate/exegroup/group_test.go

19 lines
335 B
Go

package exegroup_test
import (
"context"
"log"
"git.blauwelle.com/go/crate/exegroup"
)
func Example_defaultGroup() {
g := exegroup.Default()
g.NewSync().WithName("do nothing").WithStartFunc(func(ctx context.Context) error {
<-ctx.Done()
return ctx.Err()
})
log.Println("exit:", g.Run(context.Background()))
// Output:
}