G-Rath (Gareth Jones)
- Login: G-Rath
- Registered on: 04/23/2026
- Last sign in: 04/23/2026
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 0 | 1 |
Activity
04/23/2026
-
08:51 PM Ruby Feature #22014 (Open): Support `||` and `&&` operations in coverage
- https://bugs.ruby-lang.org/issues/13901 added support for branch coverage, but did not include `||` and `&&` branches
i.e.
```
def self.even_and_positive(number)
number.even? && number >= 0
end
```
Currently, this is consi...