Check that manually injected zero will supersede nearby tick
(self)
| 724 | 0, 0.4, 3, 20, 100, 1000]) |
| 725 | |
| 726 | def test_near_zero(self): |
| 727 | """Check that manually injected zero will supersede nearby tick""" |
| 728 | lctr = mticker.AsinhLocator(linear_width=100, numticks=3, base=0) |
| 729 | |
| 730 | assert_almost_equal(lctr.tick_values(-1.1, 0.9), [-1.0, 0.0, 0.9]) |
| 731 | |
| 732 | def test_fallback(self): |
| 733 | lctr = mticker.AsinhLocator(1.0, numticks=11) |
nothing calls this directly
no test coverage detected