~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to blackbox.py

  • Committer: Aaron Bentley
  • Date: 2006-02-01 03:37:33 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20060201033733-df5441ce73162009
Got selftest passing with storage API

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
        self.runbzr('patch mypatch')
43
43
        assert file('myfile', 'rb').read() == 'goodbye'
44
44
 
45
 
    def test_branch_history(self):
46
 
        self.runbzr('init')
47
 
        file('myfile', 'wb').write('hello')
48
 
        self.runbzr('add')
49
 
        self.runbzr('commit -m hello')
50
 
        self.runbzr('branch-history')
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')
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
45
 
69
46
def test_suite():
70
47
    return makeSuite(TestBzrTools)