~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test__walkdirs_win32.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-10 19:20:57 UTC
  • mfrom: (4988.10.5 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100210192057-uvi7tmdubcvh9xpo
(Michal Junák) Bug #511987, support 'bzr export FILE'

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'.')