Changeset 189 for trunk/tests
- Timestamp:
- 03/08/07 10:32:47 (6 years ago)
- Files:
-
- trunk/tests/unit/test_index_pylint.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tests/unit/test_index_pylint.py
r186 r189 3 3 import tempfile 4 4 5 import nose 6 5 7 import _path_cheesecake 6 8 from _helper_cheesecake import DATA_PATH, Glutton, create_empty_file 7 9 from cheesecake.cheesecake_index import IndexPyLint 8 from cheesecake.util import rmtree10 from cheesecake.util import command_successful, rmtree 9 11 from cheesecake import logger 10 12 11 13 12 14 class TestIndexPyLint(object): 15 def setup(self): 16 # Skip whole test if pylint is not installed. 17 if not command_successful("pylint --version"): 18 raise nose.SkipTest 19 13 20 def test_import_self(self): 14 21 files_list = ['import_self.py']
