(text, comment_prefix)
| 139 | return test_name.replace('_', ' ').title().replace(' ', '') |
| 140 | |
| 141 | def make_comment(text, comment_prefix): |
| 142 | return '\n'.join([comment_prefix + (' ' if line.strip() else '') + line for line in text.splitlines()]) |
| 143 | |
| 144 | def read_file(file_name): |
| 145 | with open(file_name, 'r') as f: |
no outgoing calls
no test coverage detected