(self, vmin, vmax, steps, expected)
| 36 | |
| 37 | @pytest.mark.parametrize('vmin, vmax, steps, expected', integer_data) |
| 38 | def test_integer(self, vmin, vmax, steps, expected): |
| 39 | loc = mticker.MaxNLocator(nbins=5, integer=True, steps=steps) |
| 40 | assert_almost_equal(loc.tick_values(vmin, vmax), expected) |
| 41 | |
| 42 | @pytest.mark.parametrize('kwargs, errortype, match', [ |
| 43 | ({'foo': 0}, TypeError, |
nothing calls this directly
no test coverage detected