test quiet option of timeit magic
()
| 675 | assert(res is not None) |
| 676 | |
| 677 | def test_timeit_quiet(): |
| 678 | """ |
| 679 | test quiet option of timeit magic |
| 680 | """ |
| 681 | with tt.AssertNotPrints("loops"): |
| 682 | _ip.run_cell("%timeit -n1 -r1 -q 1") |
| 683 | |
| 684 | def test_timeit_return_quiet(): |
| 685 | with tt.AssertNotPrints("loops"): |