mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
867 B
Python
25 lines
867 B
Python
#/usr/bin/env python
|
|
import mozdevice
|
|
import mozlog
|
|
import unittest
|
|
from sut import MockAgent
|
|
|
|
|
|
class TestRemove(unittest.TestCase):
|
|
|
|
def test_removeDir(self):
|
|
commands = [("isdir /mnt/sdcard/test", "TRUE"),
|
|
("rmdr /mnt/sdcard/test", "Deleting file(s) from "
|
|
"/storage/emulated/legacy/Moztest\n"
|
|
" <empty>\n"
|
|
"Deleting directory "
|
|
"/storage/emulated/legacy/Moztest\n")]
|
|
|
|
m = MockAgent(self, commands=commands)
|
|
d = mozdevice.DroidSUT("127.0.0.1", port=m.port, logLevel=mozlog.DEBUG)
|
|
# No error implies we're all good
|
|
self.assertEqual(None, d.removeDir("/mnt/sdcard/test"))
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|