diff --git a/README.md b/README.md index b73eab3..973b9a9 100644 --- a/README.md +++ b/README.md @@ -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