Lines Matching refs:response
12 response = ubman.run_command('button list; echo rc:$?')
13 assert('button1' in response)
14 assert('button2' in response)
15 assert('rc:0' in response)
28 response = ubman.run_command('button button1; echo rc:$?')
29 assert('on' in response)
30 assert('rc:0' in response)
33 response = ubman.run_command('button button1; echo rc:$?')
34 assert('off' in response)
35 assert('rc:1' in response)
37 response = ubman.run_command('button nonexistent-button; echo rc:$?')
38 assert('not found' in response)
39 assert('rc:1' in response)