tests/app/soc/views/sidebar/test_sidebar.py
changeset 1009 7abbbfc79f3a
child 1027 9633a6a5e5f9
equal deleted inserted replaced
1008:ae1a36ef7cff 1009:7abbbfc79f3a
       
     1 #!/usr/bin/python2.5
       
     2 #
       
     3 # Copyright 2008 the Melange authors.
       
     4 #
       
     5 # Licensed under the Apache License, Version 2.0 (the "License");
       
     6 # you may not use this file except in compliance with the License.
       
     7 # You may obtain a copy of the License at
       
     8 #
       
     9 #   http://www.apache.org/licenses/LICENSE-2.0
       
    10 #
       
    11 # Unless required by applicable law or agreed to in writing, software
       
    12 # distributed under the License is distributed on an "AS IS" BASIS,
       
    13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
       
    14 # See the License for the specific language governing permissions and
       
    15 # limitations under the License.
       
    16 
       
    17 
       
    18 __authors__ = [
       
    19   '"Sverre Rabbelier" <sverre@rabbelier.nl>',
       
    20   ]
       
    21 
       
    22 
       
    23 import unittest
       
    24 
       
    25 from google.appengine.api import users
       
    26 from google.appengine.api import memcache
       
    27 
       
    28 from soc.views.sitemap import sidebar
       
    29 
       
    30 class SidebarTest(unittest.TestCase):
       
    31   def setUp(self):
       
    32     pass
       
    33 
       
    34   def testSidebarCallbacksAreAdded(self):
       
    35     """Test that the sidebar callbacks are added when importing 'build'
       
    36     """
       
    37 
       
    38     self.assertEqual([], sidebar.SIDEBAR)
       
    39     from soc.views.sitemap import build
       
    40     self.assertNotEqual([], sidebar.SIDEBAR)
       
    41 
       
    42   def testSidebarBuilds(self):
       
    43     """test that the sidebar builds and does not return None
       
    44     """
       
    45 
       
    46     self.assertNotEqual(None, sidebar.getSidebar())