diff --git a/rq/dummy.py b/rq/dummy.py deleted file mode 100644 index 12f360b5..00000000 --- a/rq/dummy.py +++ /dev/null @@ -1,38 +0,0 @@ -""" -Some dummy tasks that are well-suited for generating load for testing purposes. -""" - -import random -import time - - -def do_nothing(): - pass - - -def sleep(secs: int): - time.sleep(secs) - - -def endless_loop(): - while True: - time.sleep(1) - - -def div_by_zero(): - 1 / 0 - - -def fib(n: int): - if n <= 1: - return 1 - else: - return fib(n - 2) + fib(n - 1) - - -def random_failure(): - if random.choice([True, False]): - class RandomError(Exception): - pass - raise RandomError('Ouch!') - return 'OK'