(a, b, expected)
| 428 | ([1, 2, 3], 4, [1, 2, 3, 4]), |
| 429 | ]) |
| 430 | def test_seq_concat_item(a, b, expected): |
| 431 | res = seq_concat_item(a, b) |
| 432 | assert type(res) is type(expected) |
| 433 | assert res == expected |
| 434 | |
| 435 | |
| 436 | class StarKwargsCallable: |
nothing calls this directly
no test coverage detected