()
| 84 | |
| 85 | |
| 86 | def test_replace_tuple(): |
| 87 | replaced = replace_hy_obj((0,), Integer(13)) |
| 88 | assert type(replaced) == Tuple |
| 89 | assert type(replaced[0]) == Integer |
| 90 | assert replaced == Tuple([Integer(0)]) |
| 91 | |
| 92 | |
| 93 | def test_list_add(): |
nothing calls this directly
no test coverage detected