()
| 836 | |
| 837 | |
| 838 | def test_bbox_is_finite(): |
| 839 | assert not Bbox([(1, 1), (1, 1)])._is_finite() |
| 840 | assert not Bbox([(0, 0), (np.inf, 1)])._is_finite() |
| 841 | assert not Bbox([(-np.inf, 0), (2, 2)])._is_finite() |
| 842 | assert not Bbox([(np.nan, 0), (2, 2)])._is_finite() |
| 843 | assert Bbox([(0, 0), (0, 2)])._is_finite() |
| 844 | assert Bbox([(0, 0), (2, 0)])._is_finite() |
| 845 | assert Bbox([(0, 0), (1, 2)])._is_finite() |
| 846 | |
| 847 | |
| 848 | def test_bbox_frozen_copies_minpos(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…