コード例 #1
0
ファイル: habitat.py プロジェクト: mikhtonyuk/pyhk2
    def _regInIoC(self):
        self._ioc.bind(Habitat, self)

        for s, cts in self._servicesToContracts.iteritems():
            [annot] = filter(lambda x: isinstance(x, Service), Annotations.getAnnotations(s))
            scope = annot.scope or NoScope
            scope = scope()

            for c in cts:
                self._ioc.bind(c, s, scope)
コード例 #2
0
ファイル: annotations_test.py プロジェクト: mikhtonyuk/pyhk2
 def testClassAnnotationsParams(self):
     self.assertEqual(len(Annotations.getAnnotations(Bar)), 1)
     self.assertEqual(Annotations.getAnnotations(Bar)[0].data, "bar")
コード例 #3
0
ファイル: annotations_test.py プロジェクト: mikhtonyuk/pyhk2
 def testClassAnnotationsList(self):
     self.assertEqual(len(Annotations.getAnnotations(Foo)), 1)