Test that anonymous Timer works with context manager.
()
| 58 | |
| 59 | |
| 60 | def test_context_manager_anonymous(): |
| 61 | """Test that anonymous Timer works with context manager.""" |
| 62 | timer = common.Timer() |
| 63 | with timer: |
| 64 | sleep(0.05) |
| 65 | assert timer.elapsed().total_seconds() > 0.045 |
| 66 | |
| 67 | |
| 68 | if __name__ == "__main__": |