From 14db54444165545c927a6219267f9cbbbb78b895 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Sat, 26 Jan 2019 17:12:21 -0700 Subject: [PATCH] Split question matchers into other types --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d6f7261..4b2ba9e 100644 --- a/README.md +++ b/README.md @@ -112,11 +112,10 @@ In no particular order, features that have been implemented and are planned: - [ ] Shared examples - `behaves_like`, `include_examples` - [ ] Matchers - [X] Equality matchers - `eq`, `be`, `be_a`, `match` - - [X] Truthy matchers - `be_true`, `be_false`, `be_truthy`, `be_falsey` + - [X] Truthy matchers - `be_true`, `be_false`, `be_truthy`, `be_falsey`, `be_nil` - [X] Comparison matchers - `<`, `<=`, `>`, `>=`, `be_within` - - [X] Question matchers - `be_nil`, `be_empty` - [ ] Exception matchers - `raise_error` - - [ ] Collection matchers - `start_with`, `end_with`, `contain`, `contain_exactly` + - [ ] Collection matchers - `start_with`, `end_with`, `contain`, `contain_exactly`, `be_empty` - [ ] Change matchers - `change`, `from`, `to`, `by`, `by_at_least`, `by_at_most` - [ ] Satisfy matcher - `satisfy` - [ ] Yield matchers - `yield_control`, `times`, `yield_values`