Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b7a957 commit 4afcfb4Copy full SHA for 4afcfb4
1 file changed
Lib/test/test_startfile.py
@@ -17,19 +17,11 @@ class TestCase(unittest.TestCase):
17
def test_nonexisting(self):
18
self.assertRaises(OSError, startfile, "nonexisting.vbs")
19
20
- def test_nonexisting_u(self):
21
- self.assertRaises(OSError, startfile, "nonexisting.vbs")
22
-
23
def test_empty(self):
24
empty = path.join(path.dirname(__file__), "empty.vbs")
25
startfile(empty)
26
startfile(empty, "open")
27
28
- def test_empty_u(self):
29
- empty = path.join(path.dirname(__file__), "empty.vbs")
30
- startfile(str(empty, "mbcs"))
31
- startfile(str(empty, "mbcs"), "open")
32
33
def test_main():
34
test_support.run_unittest(TestCase)
35
0 commit comments