Bug 785797 - adapt test_info to the current implemented functionality

This commit is contained in:
Mihnea Dobrescu-Balaur 2012-09-10 11:23:45 -04:00
Родитель f4f949ab6d
Коммит da52969f34
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -13,13 +13,13 @@ class InfoTestCase(DeviceManagerTestCase):
""" This tests the "info" command
"""
cmds = ('os', 'id', 'systime', 'uptime', 'screen',
'memory', 'power', 'process')
'memory', 'power')
for c in cmds:
data = self.dm.getInfo(c)
print c + str(data)
print " ==== Now we call them all ===="
data = self.dm.getInfo('all')
print str(data)
#data = self.dm.getInfo('all')
#print str(data)
# No real good way to verify this. If it doesn't throw, we're ok.