/usr/local/lib64/python3.6/site-packages/pandas/tests/plotting
NameSizeModeActions
__pycache__/-0755rm
common.py187550644editdlrm
test_backend.py34880644editdlrm
test_boxplot_method.py181660644editdlrm
test_common.py8880644editdlrm
test_converter.py121960644editdlrm
test_datetimelike.py556300644editdlrm
test_frame.py1335560644editdlrm
test_groupby.py44660644editdlrm
test_hist_method.py194810644editdlrm
test_misc.py156790644editdlrm
test_series.py361770644editdlrm
__init__.py00644editdlrm
Edit: /usr/local/lib64/python3.6/site-packages/pandas/tests/plotting/test_common.py (888B)
import pytest import pandas.util._test_decorators as td from pandas import DataFrame from pandas.tests.plotting.common import TestPlotBase, _check_plot_works @td.skip_if_no_mpl class TestCommon(TestPlotBase): def test__check_ticks_props(self): # GH 34768 df = DataFrame({"b": [0, 1, 0], "a": [1, 2, 3]}) ax = _check_plot_works(df.plot, rot=30) ax.yaxis.set_tick_params(rotation=30) msg = "expected 0.00000 but got " with pytest.raises(AssertionError, match=msg): self._check_ticks_props(ax, xrot=0) with pytest.raises(AssertionError, match=msg): self._check_ticks_props(ax, xlabelsize=0) with pytest.raises(AssertionError, match=msg): self._check_ticks_props(ax, yrot=0) with pytest.raises(AssertionError, match=msg): self._check_ticks_props(ax, ylabelsize=0)