aboutsummaryrefslogtreecommitdiff
path: root/automation/server/server_test.py
blob: c2e4b0ae293dc0958c41997f8b7219fddffeb34e (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
27
#!/usr/bin/python
#
# 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()