13 lines
227 B
Python
13 lines
227 B
Python
|
#!/usr/bin/python
|
||
|
import os
|
||
|
from sugar.session.TestSession import TestSession
|
||
|
from sugar.presence import PresenceService
|
||
|
|
||
|
os.environ['SUGAR_NICK_NAME'] = 'kiu'
|
||
|
|
||
|
session = TestSession()
|
||
|
session.start()
|
||
|
|
||
|
PresenceService.start()
|
||
|
|