(self)
| 15 | pass |
| 16 | |
| 17 | def test_cmd_run(self): |
| 18 | pipeline = os.popen('pocsuite -k ecshop --options') |
| 19 | |
| 20 | # os.popen default encoding may not be utf-8 |
| 21 | res = pipeline.buffer.read().decode('utf-8') |
| 22 | |
| 23 | self.assertTrue('You can select dict_keys' in res) |