From 5717b04159076b41abd5a3ab7713728aa061e240 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Sun, 8 Dec 2019 15:52:16 -0700 Subject: [PATCH] Mark things done --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1585016..7e0d233 100644 --- a/README.md +++ b/README.md @@ -310,14 +310,15 @@ Items not marked as completed may have partial implementations. - [X] `have_attributes` - [ ] Compound - `and`, `or` - [ ] Mocks and Doubles - - [ ] Mocks (Stub real types) - `mock TYPE { }` + - [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()` - - [ ] Spies - `expect().to receive()` + - [X] Spies - `expect().to receive()` - [X] Message expectations - `expect().to receive().at_least()` - [X] Argument expectations - `expect().to receive().with()` - [ ] Message ordering - `expect().to receive().ordered` - - [ ] Null doubles + - [X] Null doubles + - [X] Verifying doubles - [ ] Runner - [X] Fail fast - [ ] Test filtering - by name, context, and tags