diff -r e93271e9c70e -r 9633a6a5e5f9 tests/app/soc/views/sidebar/test_sidebar.py --- a/tests/app/soc/views/sidebar/test_sidebar.py Wed Jan 28 11:15:32 2009 +0000 +++ b/tests/app/soc/views/sidebar/test_sidebar.py Wed Jan 28 11:21:58 2009 +0000 @@ -27,12 +27,13 @@ from soc.views.sitemap import sidebar + class SidebarTest(unittest.TestCase): def setUp(self): pass def testSidebarCallbacksAreAdded(self): - """Test that the sidebar callbacks are added when importing 'build' + """Test that the sidebar callbacks are added when importing 'build'. """ self.assertEqual([], sidebar.SIDEBAR) @@ -40,7 +41,7 @@ self.assertNotEqual([], sidebar.SIDEBAR) def testSidebarBuilds(self): - """test that the sidebar builds and does not return None + """Test that the sidebar builds and does not return None. """ self.assertNotEqual(None, sidebar.getSidebar())