Ejemplo n.º 1
0
 def test_response_micro_service_filter_rejects_request_micro_service(self):
     assert not _response_micro_service_filter(
         TestFilters.RequestTestMicroService)
Ejemplo n.º 2
0
 def test_response_micro_service_filter_accepts_response_micro_service(
         self):
     assert _response_micro_service_filter(
         TestFilters.ResponseTestMicroService)
Ejemplo n.º 3
0
 def test_response_micro_service_filter_rejects_base_class(self):
     assert not _response_micro_service_filter(ResponseMicroService)