~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Ross Lagerwall
  • Date: 2012-08-07 06:32:51 UTC
  • mto: (6437.63.5 2.5)
  • mto: This revision was merged to the branch mainline in revision 6558.
  • Revision ID: rosslagerwall@gmail.com-20120807063251-x9p03ghg2ws8oqjc
Add bzrlib/locale to .bzrignore

bzrlib/locale is generated with ./setup.py build_mo which is in turn called
by ./setup.py build

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'))
155
159
 
156
160
    def test_non_directory_children(self):
157
161
        """Test path2id when a parent directory has no children"""