jira-to-code / src /jira_to_code /tasks /easy_4 /test_pagination.py
Navigam's picture
feat: expand task suite to 22 challenges and update reward signal mechanics
6392732
Raw
History Blame Contribute Delete
159 Bytes
from pagination import get_page_bounds
def test_get_page_bounds():
assert get_page_bounds(1, 10) == (0, 10)
assert get_page_bounds(2, 10) == (10, 20)