2020-01-06 15:29:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
from git_vuln_finder import find
|
|
|
|
|
|
|
|
|
|
|
|
def test_find_vuln():
|
2020-01-06 15:58:30 +00:00
|
|
|
all_potential_vulnerabilities, all_cve_found, found = find("./test_repos/curl")
|
2020-01-06 15:29:45 +00:00
|
|
|
|
|
|
|
assert len(list(all_cve_found)) == 63
|