diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-07-19 19:02:12 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-07-19 19:02:12 (GMT) |
commit | 3b5e4d1e3cf7b23fcb0bed12763666aa564acaff (patch) | |
tree | 42663ac5f1b6ab19855b74f88c6046e42a450d40 /Lib/test/test_ntpath.py | |
parent | d783041a140da2b8011ef42dd42e795b1ade8ceb (diff) | |
download | cpython-3b5e4d1e3cf7b23fcb0bed12763666aa564acaff.zip cpython-3b5e4d1e3cf7b23fcb0bed12763666aa564acaff.tar.gz cpython-3b5e4d1e3cf7b23fcb0bed12763666aa564acaff.tar.bz2 |
Cosmetic: break the long lines in test_ntpath.py, and get rid of its
expected-output file.
Diffstat (limited to 'Lib/test/test_ntpath.py')
-rw-r--r-- | Lib/test/test_ntpath.py | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/Lib/test/test_ntpath.py b/Lib/test/test_ntpath.py index 7867fd9..b0c1b7c 100644 --- a/Lib/test/test_ntpath.py +++ b/Lib/test/test_ntpath.py @@ -1,4 +1,5 @@ import ntpath +from test_support import verbose import os errors = 0 @@ -15,16 +16,22 @@ def tester(fn, wantResult): global errors errors = errors + 1 -tester('ntpath.splitdrive("c:\\foo\\bar")', ('c:', '\\foo\\bar')) -tester('ntpath.splitunc("\\\\conky\\mountpoint\\foo\\bar")', ('\\\\conky\\mountpoint', '\\foo\\bar')) -tester('ntpath.splitdrive("c:/foo/bar")', ('c:', '/foo/bar')) -tester('ntpath.splitunc("//conky/mountpoint/foo/bar")', ('//conky/mountpoint', '/foo/bar')) +tester('ntpath.splitdrive("c:\\foo\\bar")', + ('c:', '\\foo\\bar')) +tester('ntpath.splitunc("\\\\conky\\mountpoint\\foo\\bar")', + ('\\\\conky\\mountpoint', '\\foo\\bar')) +tester('ntpath.splitdrive("c:/foo/bar")', + ('c:', '/foo/bar')) +tester('ntpath.splitunc("//conky/mountpoint/foo/bar")', + ('//conky/mountpoint', '/foo/bar')) tester('ntpath.split("c:\\foo\\bar")', ('c:\\foo', 'bar')) -tester('ntpath.split("\\\\conky\\mountpoint\\foo\\bar")', ('\\\\conky\\mountpoint\\foo', 'bar')) +tester('ntpath.split("\\\\conky\\mountpoint\\foo\\bar")', + ('\\\\conky\\mountpoint\\foo', 'bar')) tester('ntpath.split("c:\\")', ('c:\\', '')) -tester('ntpath.split("\\\\conky\\mountpoint\\")', ('\\\\conky\\mountpoint', '')) +tester('ntpath.split("\\\\conky\\mountpoint\\")', + ('\\\\conky\\mountpoint', '')) tester('ntpath.split("c:/")', ('c:/', '')) tester('ntpath.split("//conky/mountpoint/")', ('//conky/mountpoint', '')) @@ -45,5 +52,5 @@ tester('ntpath.commonprefix(["/home/swen/spam", "/home/swen/spam"])', if errors: print str(errors) + " errors." -else: +elif verbose: print "No errors. Thank your lucky stars." |