82
88
def test_shelf_with_revision(self):
83
89
from bzrlib.branch import Branch
84
91
b = Branch.initialize('.')
86
94
# Create a test file and commit it
87
95
file('test_file', 'w').write(self.ORIGINAL)
91
99
# Modify the test file and commit it
92
100
file('test_file', 'w').write(self.MODIFIED)
96
104
self.run_bzr('shelve', '-r', '1', '--all', retcode=1)