team-10/venv/Lib/site-packages/sympy/utilities/tests/test_timeutils.py
2025-08-02 02:00:33 +02:00

10 lines
337 B
Python

"""Tests for simple tools for timing functions' execution. """
from sympy.utilities.timeutils import timed
def test_timed():
result = timed(lambda: 1 + 1, limit=100000)
assert result[0] == 100000 and result[3] == "ns", str(result)
result = timed("1 + 1", limit=100000)
assert result[0] == 100000 and result[3] == "ns"