~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Martin Pool
  • Date: 2006-08-10 01:16:16 UTC
  • mto: (1904.1.2 0.9)
  • mto: This revision was merged to the branch mainline in revision 1913.
  • Revision ID: mbp@sourcefrog.net-20060810011616-d74881eba696e746
compare_trees is deprecated in 0.9 not 0.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 Canonical Ltd
 
1
# Copyright (C) 2005, 2006 by Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
58
58
        # the working tree should now be at revision '1' with the content
59
59
        # from 1.
60
60
        result = bzrdir.BzrDir.open('checkout')
61
 
        self.assertEqual(['1'], result.open_workingtree().get_parent_ids())
 
61
        self.assertEqual('1', result.open_workingtree().last_revision())
62
62
        self.failIfExists('checkout/added_in_2')
63
63
 
64
64
    def test_checkout_light_dash_r(self):
66
66
        # the working tree should now be at revision '1' with the content
67
67
        # from 1.
68
68
        result = bzrdir.BzrDir.open('checkout')
69
 
        self.assertEqual(['1'], result.open_workingtree().get_parent_ids())
 
69
        self.assertEqual('1', result.open_workingtree().last_revision())
70
70
        self.failIfExists('checkout/added_in_2')
71
71
 
72
72
    def test_checkout_reconstitutes_working_trees(self):