Current File : //usr/local/lib64/python3.6/site-packages/pandas/tests/arrays/categorical/common.py
from pandas import Categorical


class TestCategorical:
    def setup_method(self, method):
        self.factor = Categorical(
            ["a", "b", "b", "a", "a", "c", "c", "c"], ordered=True
        )