(text: str, separator: str = "_")
| 25 | |
| 26 | |
| 27 | def to_pascal_case(text: str, separator: str = "_") -> str: |
| 28 | return "".join([i.capitalize() for i in text.split("_")]) |
| 29 | |
| 30 | |
| 31 | def python_server_test_cmd(test_name: str) -> list[str]: |
no test coverage detected