()
| 7 | |
| 8 | |
| 9 | def test_memory_usage(): |
| 10 | # Check that memory_usage works with functions with star args. |
| 11 | mem, ret = memory_usage((some_func, (1, 2), dict(a=1)), retval=True) |
| 12 | assert ret[0] == (1, 2) |
| 13 | assert ret[1] == dict(a=1) |
| 14 | |
| 15 | |
| 16 | def write_line(filepath): |
no test coverage detected