()
| 697 | |
| 698 | |
| 699 | def test_shadow_framealpha(): |
| 700 | # Test if framealpha is activated when shadow is True |
| 701 | # and framealpha is not explicitly passed''' |
| 702 | fig, ax = plt.subplots() |
| 703 | ax.plot(range(100), label="test") |
| 704 | leg = ax.legend(shadow=True, facecolor='w') |
| 705 | assert leg.get_frame().get_alpha() == 1 |
| 706 | |
| 707 | |
| 708 | def test_legend_title_empty(): |