Skip to content

Commit 2b4d8b9

Browse files
committed
documentation
1 parent b211a66 commit 2b4d8b9

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: README.md

+6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ This plugin afford math related expectations.
2424
expect(5.5)->not->toBeMaxOf([2, 4.2, 5.5, 6]);
2525
```
2626

27+
#### `toBeMinOf()`
28+
```php
29+
expect(-6)->toBeMinOf([-6, 0, 1]);
30+
expect(5.5)->not->toBeMinOf([2, 4.2, 5.5, 6]);
31+
```
32+
2733
#### `toBeEven()`
2834
```php
2935
expect(6)->toBeEven();

0 commit comments

Comments
 (0)