Ensures the function exists and is callable without throwing an exception.
()
| 23 | |
| 24 | |
| 25 | def test_invoke_command(): |
| 26 | """Ensures the function exists and is callable without throwing |
| 27 | an exception.""" |
| 28 | if platform.system() == "Windows": |
| 29 | invoke_command(["cmd"]) |
| 30 | else: |
| 31 | invoke_command(["echo"]) |
| 32 | |
| 33 | |
| 34 | def test_long_command(): |
nothing calls this directly
no test coverage detected