~aptdaemon-developers/aptdaemon/1.x

« back to all changes in this revision

Viewing changes to tests/test_lock_location.py

  • Committer: Sebastian Heinlein
  • Date: 2012-12-29 23:41:16 UTC
  • mfrom: (883.1.26 pep8)
  • Revision ID: devel@glatzor.de-20121229234116-nd390n01ut2fcfce
PEP8 fixes and test for the test suite

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
import sys
10
10
import unittest
11
11
 
12
 
DEBUG=False
 
12
DEBUG = False
13
13
 
14
14
 
15
15
class LockFileLocationTest(unittest.TestCase):
40
40
                                   shell=True, stdout=subprocess.PIPE)
41
41
            exec(cmd.communicate()[0])
42
42
 
 
43
 
43
44
@unittest.skipIf(sys.version_info.major < 3, "Only Python 3")
44
45
def setUp():
45
46
    pass