~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_setup.py

  • Committer: Robert Collins
  • Date: 2005-08-25 01:13:32 UTC
  • mto: (974.1.50) (1185.1.10) (1092.3.1)
  • mto: This revision was merged to the branch mainline in revision 1139.
  • Revision ID: robertc@robertcollins.net-20050825011331-6d549d5de7edcec1
two bugfixes to smart_add - do not add paths from nested trees to the parent tree, and do not mutate the user supplied file list

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')