(self, a, b, expected)
| 128 | argnames="a,b,expected", |
| 129 | ) |
| 130 | def test_merge_lists(self, a, b, expected): |
| 131 | eq_(merge_lists_w_ordering(a, b), expected) |
| 132 | |
| 133 | |
| 134 | class OrderedDictTest(fixtures.TestBase): |
nothing calls this directly
no test coverage detected