(self)
| 105 | self.assertEqual(utils.get_count(getattr(mock_advisory, "cves")), 1) |
| 106 | |
| 107 | def test_flatten_list_void_pair(self): |
| 108 | naive_void = [{}, {}] |
| 109 | self.assertListEqual(utils.flatten_list(naive_void), naive_void) |
| 110 | |
| 111 | def test_flatten_list_distinct_pair(self): |
| 112 | naive_distinct = [{'foo': 'bar'}, {'baz': ''}] |
nothing calls this directly
no outgoing calls
no test coverage detected