summaryrefslogtreecommitdiff
path: root/bgproc_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'bgproc_tests.py')
-rw-r--r--bgproc_tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bgproc_tests.py b/bgproc_tests.py
index 4e1a87e..5dbe53c 100644
--- a/bgproc_tests.py
+++ b/bgproc_tests.py
@@ -34,3 +34,7 @@ class BackgroundProcessingTests(unittest.TestCase):
def test_no_pending_requests_initially(self):
self.assertEqual(self.bg.pending_requests, 0)
+
+ def test_wait_for_results_returns_false_initially(self):
+ self.assertEqual(self.bg.wait_for_results(), False)
+