(mock1, mock_github, mock_pypi_rest_api, mock_pypi_stats)
| 106 | @responses.activate |
| 107 | @patch("aura.package.get_reverse_dependencies", return_value=[]) |
| 108 | def test_bad_package_score(mock1, mock_github, mock_pypi_rest_api, mock_pypi_stats): |
| 109 | mock_pypi_rest_api(responses) |
| 110 | mock_github(responses) |
| 111 | |
| 112 | pkg = package.PackageScore("badboy") |
| 113 | matrix = pkg.get_score_matrix() |
| 114 | assert matrix["total"] == 0 |
| 115 | |
| 116 | |
| 117 | @responses.activate |
nothing calls this directly
no test coverage detected