~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to bzrtools.py

Branch.commit->WorkingTree.commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
    1
48
48
    >>> is_clean(br)
49
49
    (False, [])
50
 
    >>> br.commit("added file")
 
50
    >>> br.working_tree().commit("added file")
51
51
    >>> is_clean(br)
52
52
    (True, [])
53
53
    >>> rm_branch(br)