(self)
| 2764 | self.check_function(np.empty) |
| 2765 | |
| 2766 | def test_full(self): |
| 2767 | self.check_function(np.full, 0) |
| 2768 | self.check_function(np.full, 1) |
| 2769 | |
| 2770 | @pytest.mark.skipif(not HAS_REFCOUNT, reason="Python lacks refcounts") |
| 2771 | def test_for_reference_leak(self): |
nothing calls this directly
no test coverage detected