From 465626572a38cdedf00f2b99eed1bd48228f5c12 Mon Sep 17 00:00:00 2001 From: Erik Date: Thu, 7 Apr 2022 23:55:05 +0900 Subject: [PATCH] Regular updates --- rspec.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/rspec.md b/rspec.md index 9c4301f..415b4cc 100644 --- a/rspec.md +++ b/rspec.md @@ -79,6 +79,14 @@ expect(5).to be_between(1, 10) expect(5).to be_within(0.05).of value ``` +### Compound expectations + +```rb +expect(1).to (be < 2).or be > 5 +``` + +Use `or`/`and` to string multiple matchers together. See: [Compound expectations](https://relishapp.com/rspec/rspec-expectations/docs/compound-expectations) + ### Comparison ```rb -- 2.11.0