1
""" test for setup.py build process """
6
from bzrlib.tests import TestCase
9
class TestSetup(TestCase):
15
""" test cmd `python setup.py build` """
16
# run setup.py build as subproces and catch return code
17
p = os.popen("python setup.py build")
20
self.assertEqual(res, None, '`python setup.py build` fails')
23
""" cleanup build directory """
24
shutil.rmtree(u'build')