~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Tarmac
  • Author(s): Vincent Ladeuil
  • Date: 2017-01-30 14:42:05 UTC
  • mfrom: (6620.1.1 trunk)
  • Revision ID: tarmac-20170130144205-r8fh2xpmiuxyozpv
Merge  2.7 into trunk including fix for bug #1657238 [r=vila]

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"""