/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to tests/__init__.py

Start splitting up the Git{Branch,Dir,Repository} into separate modules, etc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 Canonical Ltd
2
 
 
 
1
# Copyright (C) 2006, 2007 Canonical Ltd
 
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
7
 
 
 
7
#
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
11
# GNU General Public License for more details.
12
 
 
 
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
 
17
from bzrlib import (
 
18
    tests,
 
19
    trace,
 
20
    )
 
21
 
 
22
TestCase = tests.TestCase
 
23
TestCaseInTempDir = tests.TestCaseInTempDir
 
24
TestCaseWithTransport = tests.TestCaseWithTransport
 
25
 
 
26
 
 
27
class _GitCommandFeature(tests.Feature):
 
28
 
 
29
    def _probe(self):
 
30
        import subprocess
 
31
        try:
 
32
            p = subprocess.Popen(['git', '--version'], stdout=subprocess.PIPE)
 
33
        except IOError:
 
34
            return False
 
35
        out, err = p.communicate()
 
36
        trace.mutter('Using: %s', out.rstrip('\n'))
 
37
        return True
 
38
 
 
39
    def feature_name(self):
 
40
        return 'git'
 
41
 
 
42
GitCommandFeature = _GitCommandFeature()
 
43
 
 
44
 
17
45
def test_suite():
18
 
    from unittest import TestSuite, TestLoader
19
 
    
20
 
    from bzrlib.tests import TestUtil
21
 
 
22
 
    loader = TestUtil.TestLoader()
23
 
 
24
 
    suite = TestSuite()
25
 
 
26
 
    testmod_names = ['test_ids']
27
 
            
28
 
    suite.addTest(loader.loadTestsFromModuleNames(["%s.%s" % (__name__, i) for i in testmod_names]))
 
46
    loader = tests.TestLoader()
 
47
 
 
48
    suite = tests.TestSuite()
 
49
 
 
50
    testmod_names = [
 
51
        'test_git_branch',
 
52
        'test_git_dir',
 
53
        'test_git_repository',
 
54
        'test_ids',
 
55
        ]
 
56
    testmod_names = ['%s.%s' % (__name__, t) for t in testmod_names]
 
57
    suite.addTests(loader.loadTestsFromModuleNames(testmod_names))
29
58
 
30
59
    return suite