File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -981,6 +981,8 @@ def test_isfile_driveletter(self):
981
981
raise unittest .SkipTest ('SystemDrive is not defined or malformed' )
982
982
self .assertFalse (os .path .isfile ('\\ \\ .\\ ' + drive ))
983
983
984
+ # TODO: RUSTPYTHON
985
+ @unittest .expectedFailure
984
986
@unittest .skipIf (sys .platform != 'win32' , "windows only" )
985
987
def test_con_device (self ):
986
988
self .assertFalse (os .path .isfile (r"\\.\CON" ))
@@ -1003,6 +1005,8 @@ def test_fast_paths_in_use(self):
1003
1005
self .assertTrue (os .path .exists is nt ._path_exists )
1004
1006
self .assertFalse (inspect .isfunction (os .path .exists ))
1005
1007
1008
+ # TODO: RUSTPYTHON
1009
+ @unittest .expectedFailure
1006
1010
@unittest .skipIf (os .name != 'nt' , "Dev Drives only exist on Win32" )
1007
1011
def test_isdevdrive (self ):
1008
1012
# Result may be True or False, but shouldn't raise
You can’t perform that action at this time.
0 commit comments