/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/test_bzrdir.py

  • Committer: John Arbash Meinel
  • Date: 2007-12-04 18:11:51 UTC
  • mfrom: (3074 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3075.
  • Revision ID: john@arbash-meinel.com-20071204181151-br85qwsgshso16q5
[merge] bzr.dev 3074

Show diffs side-by-side

added added

removed removed

Lines of Context:
894
894
        if sys.platform == 'win32' and not win32utils.has_win32file:
895
895
            raise TestSkipped('unable to make file hidden without pywin32 library')
896
896
        b = bzrdir.BzrDir.create('.')
897
 
        self.build_tree('a')
 
897
        self.build_tree(['a'])
898
898
        self.assertEquals(['a'], self.get_ls())
899
899
 
900
900
    def test_dot_bzr_hidden_with_url(self):
901
901
        if sys.platform == 'win32' and not win32utils.has_win32file:
902
902
            raise TestSkipped('unable to make file hidden without pywin32 library')
903
903
        b = bzrdir.BzrDir.create(urlutils.local_path_to_url('.'))
904
 
        self.build_tree('a')
 
904
        self.build_tree(['a'])
905
905
        self.assertEquals(['a'], self.get_ls())