~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport_implementations.py

Also assert that list_dir returns plain str objects.

Show diffs side-by-side

added added

removed removed

Lines of Context:
768
768
        else:
769
769
            self.build_tree(['a/', 'a/%'])
770
770
        
771
 
        self.assertEqual(['%25'], list(t.list_dir('a')))
 
771
        names = list(t.list_dir('a'))
 
772
        self.assertEqual(['%25'], names)
 
773
        self.assertIsInstance(names[0], str)
772
774
 
773
775
    def test_clone(self):
774
776
        # TODO: Test that clone moves up and down the filesystem