-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathshould.go
28 lines (22 loc) · 1.02 KB
/
should.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package gopactor
import "github.com/meamidos/gopactor/assertions"
// These assertions are mostly self-explanatory,
// but it may be helpful to go through some examples
// which can be found in the documentation for the assertions package:
// https://godoc.org/github.com/meAmidos/gopactor/assertions
var (
ShouldReceive = assertions.ShouldReceive
ShouldReceiveFrom = assertions.ShouldReceiveFrom
ShouldReceiveSomething = assertions.ShouldReceiveSomething
ShouldReceiveN = assertions.ShouldReceiveN
ShouldSend = assertions.ShouldSend
ShouldSendTo = assertions.ShouldSendTo
ShouldSendSomething = assertions.ShouldSendSomething
ShouldSendN = assertions.ShouldSendN
ShouldNotSendOrReceive = assertions.ShouldNotSendOrReceive
ShouldStart = assertions.ShouldStart
ShouldStop = assertions.ShouldStop
ShouldBeRestarting = assertions.ShouldBeRestarting
ShouldObserveTermination = assertions.ShouldObserveTermination
ShouldSpawn = assertions.ShouldSpawn
)