diff options
author | W. Trevor King <wking@drexel.edu> | 2010-01-18 10:12:25 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2010-01-18 10:12:25 -0500 |
commit | c7945daa3e1413b7c789df182b39c12dfbe2b4db (patch) | |
tree | 3fcecb33aa88c065e359fb733876d1542372bbbb /libbe/storage | |
parent | 8e0e670cb788d941d3ce109da41d1d4491c85032 (diff) | |
download | bugseverywhere-c7945daa3e1413b7c789df182b39c12dfbe2b4db.tar.gz |
Adjust VCSTestCase method docstrings for unittest.
Diffstat (limited to 'libbe/storage')
-rw-r--r-- | libbe/storage/vcs/base.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/libbe/storage/vcs/base.py b/libbe/storage/vcs/base.py index 692064c..716283a 100644 --- a/libbe/storage/vcs/base.py +++ b/libbe/storage/vcs/base.py @@ -1066,8 +1066,7 @@ if libbe.TESTING == True: class VCS_installed_TestCase (VCSTestCase): def test_installed(self): - """ - See if the VCS is installed. + """See if the VCS is installed. """ self.failUnless(self.s.installed() == True, '%(name)s VCS not found' % vars(self.Class)) @@ -1075,8 +1074,7 @@ if libbe.TESTING == True: class VCS_detection_TestCase (VCSTestCase): def test_detection(self): - """ - See if the VCS detects its installed repository + """See if the VCS detects its installed repository """ if self.s.installed(): self.s.disconnect() @@ -1086,8 +1084,7 @@ if libbe.TESTING == True: self.s.connect() def test_no_detection(self): - """ - See if the VCS detects its installed repository + """See if the VCS detects its installed repository """ if self.s.installed() and self.Class.name != 'None': self.s.disconnect() |