Update checklist

This commit is contained in:
Michael Miller 2022-07-14 20:50:28 -06:00
parent 7e09016e5c
commit f4c5caa656
No known key found for this signature in database
GPG key ID: 32B47AE8F388A1FF

View file

@ -360,10 +360,10 @@ Items not marked as completed may have partial implementations.
- [X] Mocks (Stub real types) - `mock TYPE { }`
- [X] Doubles (Stand-ins for real types) - `double NAME { }`
- [X] Method stubs - `allow().to receive()`, `allow().to receive().and_return()`
- [X] Spies - `expect().to have_receive()`
- [ ] Message expectations - `expect().to receive().at_least()`
- [X] Argument expectations - `expect().to receive().with()`
- [ ] Message ordering - `expect().to receive().ordered`
- [X] Spies - `expect().to have_received()`
- [X] Message expectations - `expect().to have_received().at_least()`
- [X] Argument expectations - `expect().to have_received().with()`
- [ ] Message ordering - `expect().to have_received().ordered`
- [X] Null doubles
- [X] Runner
- [X] Fail fast