blob: cc61fdc5ba995da3b83c3c6cfbff6de6fdeb3ca8 [file] [log] [blame]
#!/usr/bin/python2
import unittest
import common
from autotest_lib.server.hosts import remote
class test_remote_host(unittest.TestCase):
def test_has_hostname(self):
host = remote.RemoteHost("myhost")
self.assertEqual(host.hostname, "myhost")
if __name__ == "__main__":
unittest.main()