mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-03-23 12:15:16 +00:00
add docstrings
This commit is contained in:
parent
0607b7331f
commit
03712c9cca
@ -211,6 +211,9 @@ class RunStartTests(unittest.TestCase):
|
||||
|
||||
|
||||
class RunTests(unittest.TestCase):
|
||||
"""
|
||||
Tests confirming end-user behavior of CLI commands
|
||||
"""
|
||||
|
||||
def setUp(self):
|
||||
d = super(RunTests, self).setUp()
|
||||
@ -220,6 +223,10 @@ class RunTests(unittest.TestCase):
|
||||
|
||||
@patch('twisted.internet.reactor')
|
||||
def test_run_invalid_config(self, reactor):
|
||||
"""
|
||||
Configuration that's invalid should be obvious to the user
|
||||
"""
|
||||
|
||||
def cwr(fn, *args, **kw):
|
||||
fn()
|
||||
reactor.callWhenRunning = cwr
|
||||
|
Loading…
x
Reference in New Issue
Block a user