mirror of
git://git.psyced.org/git/pypsyc
synced 2024-08-15 03:20:04 +00:00
added new pypsyc as 'mjacob2'
This commit is contained in:
parent
0abc7a0888
commit
9f7c4147c7
46 changed files with 7243 additions and 0 deletions
21
mjacob2/tests/test_server/test_root.py
Normal file
21
mjacob2/tests/test_server/test_root.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
"""
|
||||
: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
|
Loading…
Add table
Add a link
Reference in a new issue