blob: 0bd981be3ad28a61874da1530af40c496f050a5b [file] [log] [blame]
#/usr/bin/env python
import mozdevice
import logging
import unittest
from sut import MockAgent
class TestApp(unittest.TestCase):
def test_getAppRoot(self):
command = [("getapproot org.mozilla.firefox",
"/data/data/org.mozilla.firefox")]
m = MockAgent(self, commands=command)
d = mozdevice.DroidSUT("127.0.0.1", port=m.port, logLevel=logging.DEBUG)
self.assertEqual(command[0][1], d.getAppRoot('org.mozilla.firefox'))
if __name__ == '__main__':
unittest.main()