~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to blackbox.py

  • Committer: Aaron Bentley
  • Date: 2006-02-01 04:32:21 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20060201043221-de8e6754ea0b8fcf
Fixed fetch-ghosts

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
        self.runbzr('branch . my_branch')
59
59
        self.runbzr('graph-ancestry . graph.dot --merge-branch my_branch')
60
60
 
 
61
    def test_fetch_ghosts(self):
 
62
        self.runbzr('init')
 
63
        file('myfile', 'wb').write('hello')
 
64
        self.runbzr('add')
 
65
        self.runbzr('commit -m hello')
 
66
        self.runbzr('branch . my_branch')
 
67
        self.runbzr('fetch-ghosts my_branch')
 
68
 
61
69
def test_suite():
62
70
    return makeSuite(TestBzrTools)