(text)
| 76 | |
| 77 | @pytest.mark.parametrize("text", ["cat3.8", "python3", "python2"]) |
| 78 | def test_executable_false_cases(text): |
| 79 | # GIVEN / WHEN |
| 80 | result = BINARY_REGEXP.match(text) |
| 81 | |
| 82 | # THEN |
| 83 | assert result is None |
| 84 | |
| 85 | |
| 86 | @pytest.mark.parametrize( |
nothing calls this directly
no outgoing calls
no test coverage detected