~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test__walkdirs_win32.py

  • Committer: John Arbash Meinel
  • Date: 2010-02-04 16:06:36 UTC
  • mfrom: (5007 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5023.
  • Revision ID: john@arbash-meinel.com-20100204160636-xqeuwz8bwt8bbts4
Merge bzr.dev 5007, resolve conflict, update NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2008, 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2008 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
22
22
    osutils,
23
23
    tests,
24
24
    )
25
 
from bzrlib.tests import (
26
 
    features,
27
 
    )
28
 
 
29
 
 
30
 
win32_readdir_feature = features.ModuleAvailableFeature('bzrlib._walkdirs_win32')
 
25
 
 
26
 
 
27
win32_readdir_feature = tests.ModuleAvailableFeature('bzrlib._walkdirs_win32')
31
28
 
32
29
 
33
30
class TestWin32Finder(tests.TestCaseInTempDir):
77
74
        self.assertReadDir([('foo', 'foo', 'file', u'./foo')],
78
75
            '', u'.')
79
76
 
80
 
    def test_directory(self):
 
77
    def test_dir(self):
81
78
        self.build_tree(['bar/'])
82
79
        self.assertReadDir([('bar', 'bar', 'directory', u'./bar')],
83
80
            '', u'.')