mirror of
https://github.com/Second-Hand-Friends/kleinanzeigen-bot.git
synced 2026-03-12 02:31:45 +01:00
13
tests/test_utils.py
Normal file
13
tests/test_utils.py
Normal file
@@ -0,0 +1,13 @@
|
||||
"""
|
||||
Copyright (C) 2022 Sebastian Thomschke and contributors
|
||||
SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
"""
|
||||
import time
|
||||
from kleinanzeigen_bot import utils
|
||||
|
||||
|
||||
def test_pause():
|
||||
start = time.time()
|
||||
utils.pause(100, 100)
|
||||
elapsed = 1000 * (time.time() - start)
|
||||
assert 99 < elapsed < 110
|
||||
Reference in New Issue
Block a user