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