(what)
| 33 | |
| 34 | |
| 35 | def get_command_descriptions(what): |
| 36 | print ("get_command_descriptions --" + what) |
| 37 | CEPH_BIN = os.environ.get('CEPH_BIN', ".") |
| 38 | with os.popen(CEPH_BIN + "/get_command_descriptions " + "--" + what) as output_file: |
| 39 | output_contents = output_file.read() |
| 40 | return output_contents |
| 41 | |
| 42 | |
| 43 | class ParseJsonFuncsigs(unittest.TestCase): |
no test coverage detected