Home | Trees | Indices | Help |
---|
|
1 # Elisa - Home multimedia server 2 # Copyright (C) 2006-2008 Fluendo Embedded S.L. (www.fluendo.com). 3 # All rights reserved. 4 # 5 # This file is available under one of two license agreements. 6 # 7 # This file is licensed under the GPL version 3. 8 # See "LICENSE.GPL" in the root of this distribution including a special 9 # exception to use Elisa with Fluendo's plugins. 10 # 11 # The GPL part of Elisa is also available under a commercial licensing 12 # agreement from Fluendo. 13 # See "LICENSE.Elisa" in the root directory of this distribution package 14 # for details on that license. 15 16 from elisa.core.tests.elisa_test_case import ElisaTestCase 17 from elisa.core.manager import Manager 18 from elisa.core.component import Component 19 20 264829 ElisaTestCase.setUp(self) 30 self._manager = Manager() 31 self._provider = SimpleComponent() 32 self._manager.register_component(self._provider) 33 return self._manager.initialize()34 3840 self._provider.running = False 41 self._manager.start() 42 self.assertEquals(self._provider.running, False)43
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0beta1 on Wed Jan 16 19:10:24 2008 | http://epydoc.sourceforge.net |