diff --git a/rspec.md b/rspec.md index 9c4301f6b..415b4cc30 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