Update checklist

This commit is contained in:
Michael Miller 2022-07-14 19:18:23 -06:00
parent 9c888fef3f
commit c62cc8fdc7
No known key found for this signature in database
GPG Key ID: 32B47AE8F388A1FF
1 changed files with 2 additions and 3 deletions

View File

@ -360,12 +360,11 @@ 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 receive()`
- [X] Message expectations - `expect().to receive().at_least()`
- [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] Null doubles
- [X] Verifying doubles
- [X] Runner
- [X] Fail fast
- [X] Test filtering - by name, context, and tags