From: Erik Date: Thu, 7 Apr 2022 14:55:05 +0000 (+0900) Subject: Regular updates X-Git-Url: http://git.osdn.net/view?p=twpd%2Fmaster.git;a=commitdiff_plain;h=465626572a38cdedf00f2b99eed1bd48228f5c12 Regular updates --- 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