示例#1
0
 def test_response_micro_service_filter_rejects_request_micro_service(self):
     assert not _response_micro_service_filter(
         TestFilters.RequestTestMicroService)
示例#2
0
 def test_response_micro_service_filter_accepts_response_micro_service(
         self):
     assert _response_micro_service_filter(
         TestFilters.ResponseTestMicroService)
示例#3
0
 def test_response_micro_service_filter_rejects_base_class(self):
     assert not _response_micro_service_filter(ResponseMicroService)