コード例 #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)