File size: 403 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
package swo
import (
"context"
"errors"
"testing"
"github.com/stretchr/testify/assert"
)
// Test 1 immediately return error
// Test 2 call call-back fn, should block until cancel()
func TestBegin(t *testing.T) {
wf1 := NewWithFunc(func(ctx context.Context, fn func(struct{})) error {
return errors.New("expected error")
})
_, err := wf1.Begin(context.Background())
assert.Error(t, err)
}
|