Basics of stubbing is done

Still need to handle some features of yielding.
Also needs error handling.
This commit is contained in:
Michael Miller 2019-10-13 11:21:23 -06:00
parent aecdb514b3
commit 3befc8001b
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ Items not marked as completed may have partial implementations.
- [ ] Mocks and Doubles
- [ ] Mocks (Stub real types) - `mock TYPE { }`
- [X] Doubles (Stand-ins for real types) - `double NAME { }`
- [ ] Method stubs - `allow().to receive()`, `allow().to receive().and_return()`
- [X] Method stubs - `allow().to receive()`, `allow().to receive().and_return()`
- [ ] Spies - `expect().to receive()`
- [ ] Message expectations - `expect().to receive().at_least()`
- [ ] Argument expectations - `expect().to receive().with()`