()
| 704 | |
| 705 | |
| 706 | def test_fancyarrow_units(): |
| 707 | from datetime import datetime |
| 708 | # Smoke test to check that FancyArrowPatch works with units |
| 709 | dtime = datetime(2000, 1, 1) |
| 710 | fig, ax = plt.subplots() |
| 711 | arrow = FancyArrowPatch((0, dtime), (0.01, dtime)) |
| 712 | |
| 713 | |
| 714 | def test_fancyarrow_setdata(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…