Home | History | Annotate | Download | only in server
      1 #!/usr/bin/python
      2 #
      3 # Copyright 2010 Google Inc. All Rights Reserved.
      4 """Machine manager unittest.
      5 
      6 MachineManagerTest tests MachineManager.
      7 """
      8 
      9 __author__ = 'asharif (at] google.com (Ahmad Sharif)'
     10 
     11 import server
     12 import unittest
     13 
     14 
     15 class ServerTest(unittest.TestCase):
     16 
     17   def setUp(self):
     18     pass
     19 
     20   def testGetAllJobs(self):
     21     s = server.Server()
     22     print s.GetAllJobs()
     23 
     24 
     25 if __name__ == '__main__':
     26   unittest.main()
     27