1
0
Fork 0
mirror of git://git.psyced.org/git/pypsyc synced 2024-08-15 03:20:04 +00:00
pypsyc/mjacob2/tests/test_server/test_root.py
2012-01-02 14:12:33 +01:00

21 lines
418 B
Python

"""
:copyright: 2010 by Manuel Jacob
:license: MIT
"""
from mock import Mock
from tests.constants import SERVER1
from pypsyc.server import Entity
from pypsyc.server.root import Root
class TestRoot(object):
def setup(self):
server = Mock()
server.hostname = SERVER1
root_entity = Entity(server=server)
self.root = Root(root_entity)
def test_root(self):
pass