~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_update.py

  • Committer: Martin Pool
  • Date: 2006-07-21 03:13:58 UTC
  • mfrom: (1815.3.4 bzr.mx)
  • mto: This revision was merged to the branch mainline in revision 1876.
  • Revision ID: mbp@sourcefrog.net-20060721031358-17d867783d7738b3
Add 'bzr up' as synonym for update

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
        self.assertEqual('Tree is up to date at revision 0.\n', err)
33
33
        self.assertEqual('', out)
34
34
 
 
35
    def test_update_standalone_trivial_with_alias_up(self):
 
36
        self.runbzr("init")
 
37
        out, err = self.runbzr('up')
 
38
        self.assertEqual('Tree is up to date at revision 0.\n', err)
 
39
        self.assertEqual('', out)
 
40
 
35
41
    def test_update_up_to_date_light_checkout(self):
36
42
        self.make_branch_and_tree('branch')
37
43
        self.runbzr('checkout --lightweight branch checkout')