diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/wipy/os.py | 10 | ||||
-rw-r--r-- | tests/wipy/os.py.exp | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/tests/wipy/os.py b/tests/wipy/os.py index cacd10958..f81d1cee8 100644 --- a/tests/wipy/os.py +++ b/tests/wipy/os.py @@ -125,6 +125,16 @@ except: print('Exception') try: + os.unmount('/something') +except: + print('Exception') + +try: + os.unmount('something') +except: + print('Exception') + +try: os.mkfs('flash') # incorrect path format except: print('Exception') diff --git a/tests/wipy/os.py.exp b/tests/wipy/os.py.exp index 55a0879aa..a0f01e35e 100644 --- a/tests/wipy/os.py.exp +++ b/tests/wipy/os.py.exp @@ -27,4 +27,6 @@ Exception Exception Exception Exception +Exception +Exception ['flash', 'sd'] |