(text)
| 45 | "text", ["libpython.so", "libpython.so.1.0", "libpythondm.so.1.0"] |
| 46 | ) |
| 47 | def test_libpython_false_cases(text): |
| 48 | # GIVEN / WHEN |
| 49 | result = LIBPYTHON_REGEXP.match(text) |
| 50 | |
| 51 | # THEN |
| 52 | assert result is None |
| 53 | |
| 54 | |
| 55 | @pytest.mark.parametrize( |
nothing calls this directly
no outgoing calls
no test coverage detected