/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/blackbox/test_inventory.py

  • Committer: Jelmer Vernooij
  • Date: 2019-07-25 23:22:30 UTC
  • mfrom: (7374 work)
  • mto: This revision was merged to the branch mainline in revision 7376.
  • Revision ID: jelmer@jelmer.uk-20190725232230-9b4x1nn0m19j1oh0
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
    def test_inventory(self):
49
49
        self.assertInventoryEqual('a\nb\nb/c\n')
50
50
 
 
51
    def test_inventory_include_root(self):
 
52
        self.assertInventoryEqual('\na\nb\nb/c\n', '--include-root')
 
53
        self.assertInventoryEqual('b\nb/c\n', '--include-root b')
 
54
 
51
55
    def test_inventory_kind(self):
52
56
        self.assertInventoryEqual('a\nb/c\n', '--kind file')
53
57
        self.assertInventoryEqual('b\n', '--kind directory')