1
0
Fork 0
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:
psyc://psyced.org/~lynX 2012-01-02 14:12:33 +01:00
parent 0abc7a0888
commit 9f7c4147c7
46 changed files with 7243 additions and 0 deletions

View 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