~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-15 09:01:32 UTC
  • Revision ID: mbp@sourcefrog.net-20050915090132-15d9ac5b223979d9
- Raise a better error from commit when a parent is absent

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
 
38
38
class TestFetch(TestCaseInTempDir):
39
 
    def SKIPPED_old_test_fetch(self):
40
 
        """obsolete: new commit code depends on parents being present
41
 
        so the test data no longer suits this test."""
42
 
        
 
39
    def runTest(self):
43
40
        def new_branch(name):
44
41
            os.mkdir(name)
45
42
            return Branch(name, init=True)