Exemple #1
0
    def _make_service(self):
        """
        Test helper to make a passable service.
        """
        svc           = LocalContextMixin()
        svc.id        = "test_id"
        svc.name      = "test_svc"
        svc.container = Mock()
        svc.container.context = LocalContextMixin()

        return svc
Exemple #2
0
    def _make_service(self):
        """
        Test helper to make a passable service.
        """
        svc = LocalContextMixin()
        svc.id = "test_id"
        svc.name = "test_svc"
        svc.container = Mock()
        svc.container.context = LocalContextMixin()

        return svc