~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_setup.py

Merge from integration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
""" test for setup.py build process """
 
2
 
 
3
import os
 
4
import sys
 
5
import subprocess
 
6
import shutil
 
7
 
 
8
from bzrlib.tests import TestCase
 
9
 
 
10
 
 
11
class TestSetup(TestCase):
 
12
 
 
13
    def setUp(self):
 
14
        pass
 
15
 
 
16
    def test_build(self):
 
17
        """ test cmd `python setup.py build` """
 
18
        # run setup.py build as subproces and catch return code
 
19
        p = subprocess.Popen([sys.executable, 'setup.py', 'build'],
 
20
                stdout=subprocess.PIPE, stderr=subprocess.PIPE)
 
21
        s = p.communicate()
 
22
        self.assertEqual(0, p.returncode, '`python setup.py build` fails')
 
23
 
 
24
    def tearDown(self):
 
25
        """ cleanup build directory """
 
26
        shutil.rmtree(u'build')