~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testfetch.py

  • Committer: Martin Pool
  • Date: 2005-09-13 23:42:32 UTC
  • mto: (1185.8.2) (974.1.91)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: mbp@sourcefrog.net-20050913234232-4d901f2d843a35f3
- ignore .DS_Store by default

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
class TestFetch(TestCaseInTempDir):
27
27
    def runTest(self):
28
 
        from bzrlib.commit import commit
29
28
        from bzrlib.fetch import greedy_fetch, has_revision
30
 
        from bzrlib.selftest.testrevision import make_branches
31
29
 
32
30
        def new_branch(name):
33
31
            os.mkdir(name)
93
91
 
94
92
 
95
93
if __name__ == '__main__':
96
 
    import sys
97
 
    sys.exit(run_suite(unittest.makeSuite()))
 
94
    import unittest
 
95
    sys.exit(unittest.run_suite(unittest.makeSuite()))