~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to blackbox.py

  • Committer: Aaron Bentley
  • Date: 2006-02-01 04:28:35 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20060201042835-0ff0d7af60662f20
Fixed graph-ancestry

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
        self.runbzr('commit -m hello')
50
50
        self.runbzr('branch-history')
51
51
 
 
52
    def test_branch_history(self):
 
53
        self.runbzr('init')
 
54
        file('myfile', 'wb').write('hello')
 
55
        self.runbzr('add')
 
56
        self.runbzr('commit -m hello')
 
57
        self.runbzr('graph-ancestry . graph.dot')
 
58
        self.runbzr('branch . my_branch')
 
59
        self.runbzr('graph-ancestry . graph.dot --merge-branch my_branch')
52
60
 
53
61
def test_suite():
54
62
    return makeSuite(TestBzrTools)