def test_import_self(self):
        files_list = ['import_self.py']
        package_dir = DATA_PATH

        index = IndexPyLint()
        index.cheesecake = Glutton()

        index.compute(files_list, package_dir, 120)

        # Check that package got maximum score, what means importing self
        #     is not decreasing the score.
        print(index.value)
        assert index.value == index.max_value