aboutsummaryrefslogtreecommitdiff
path: root/automation/server/server_test.py
blob: 131ebb3be5552777c047ecf10c55ed5906bfa7bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/python2
#
# Copyright 2010 Google Inc. All Rights Reserved.
"""Machine manager unittest.

MachineManagerTest tests MachineManager.
"""

__author__ = 'asharif@google.com (Ahmad Sharif)'

import server
import unittest


class ServerTest(unittest.TestCase):

  def setUp(self):
    pass

  def testGetAllJobs(self):
    s = server.Server()
    print s.GetAllJobs()


if __name__ == '__main__':
  unittest.main()