From 35dedf3db4b2257f243651d7a8b9d4ec8aaecc82 Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Tue, 24 Jul 2012 11:15:23 +0200 Subject: [PATCH] Make test descriptions show up in short (oneliner) mode, as ./run_tests does. --- tests/test_decorator.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/tests/test_decorator.py b/tests/test_decorator.py index cf6d4e69..4f95f9c3 100644 --- a/tests/test_decorator.py +++ b/tests/test_decorator.py @@ -11,14 +11,12 @@ class TestDecorator(RQTestCase): super(TestDecorator, self).setUp() def test_decorator_preserves_functionality(self): - """ - Ensure that a decorated function's functionality is still preserved + """Ensure that a decorated function's functionality is still preserved. """ self.assertEqual(decorated_job(1, 2), 3) def test_decorator_adds_delay_attr(self): - """ - Ensure that decorator adds a delay attribute to function that returns + """Ensure that decorator adds a delay attribute to function that returns a Job instance when called. """ self.assertTrue(hasattr(decorated_job, 'delay')) @@ -28,9 +26,8 @@ class TestDecorator(RQTestCase): self.assertEqual(result.perform(), 3) def test_decorator_accepts_queue_name_as_argument(self): - """ - Ensure that passing in queue name to the decorator puts the job in the - right queue. + """Ensure that passing in queue name to the decorator puts the job in + the right queue. """ @job(queue='queue_name') def hello():