~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_inventory/basics.py

  • Committer: Vincent Ladeuil
  • Date: 2012-03-14 08:34:10 UTC
  • mto: This revision was merged to the branch mainline in revision 6501.
  • Revision ID: v.ladeuil+lp@free.fr-20120314083410-knnbugxnq7owem53
Remove deprecated code

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
        inv = self.inv_to_test_inv(inv)
153
153
        self.assertEqual(inv.path2id('src'), 'src-id')
154
154
        self.assertEqual(inv.path2id('src/bye.c'), 'bye-id')
155
 
        self.assertTrue(
156
 
            self.applyDeprecated(
157
 
                deprecated_in((2, 4, 0)),
158
 
                inv.__contains__, 'src-id'))
159
155
 
160
156
    def test_non_directory_children(self):
161
157
        """Test path2id when a parent directory has no children"""