/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 bzrlib/tests/blackbox/test_ls.py

  • Committer: John Arbash Meinel
  • Date: 2009-06-22 15:47:25 UTC
  • mfrom: (4467 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4469.
  • Revision ID: john@arbash-meinel.com-20090622154725-eidwkrs93j1qhmsf
Merge bzr.dev 4467 in prep for updating NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
        self.ls_equals('b\n')
130
130
        self.ls_equals('b\0'
131
131
                  , '--null')
132
 
        self.ls_equals('.bzrignore\n'
133
 
                       'a\n'
134
 
                       'subdir/\n'
135
 
                       'subdir/b\n'
 
132
        self.ls_equals('subdir/b\n'
136
133
                       , '--from-root')
137
 
        self.ls_equals('.bzrignore\0'
138
 
                       'a\0'
139
 
                       'subdir\0'
140
 
                       'subdir/b\0'
 
134
        self.ls_equals('subdir/b\0'
141
135
                       , '--from-root --null')
142
 
        self.ls_equals('.bzrignore\n'
143
 
                       'a\n'
144
 
                       'subdir/\n'
 
136
        self.ls_equals('subdir/b\n'
145
137
                       , '--from-root', recursive=False)
146
138
 
147
139
    def test_ls_path(self):