()
| 50 | |
| 51 | @pytest.fixture |
| 52 | def exploit(): |
| 53 | vul = Vulnerability(vulnerability_id="VCID-Exploit") |
| 54 | vul.save() |
| 55 | return Exploit.objects.create(vulnerability=vul, description="exploit description") |
| 56 | |
| 57 | |
| 58 | @pytest.fixture |
nothing calls this directly
no test coverage detected