aboutsummaryrefslogtreecommitdiff
path: root/absl/testing/_parameterized_async.py
diff options
context:
space:
mode:
Diffstat (limited to 'absl/testing/_parameterized_async.py')
-rw-r--r--absl/testing/_parameterized_async.py33
1 files changed, 0 insertions, 33 deletions
diff --git a/absl/testing/_parameterized_async.py b/absl/testing/_parameterized_async.py
deleted file mode 100644
index 1dc32d2..0000000
--- a/absl/testing/_parameterized_async.py
+++ /dev/null
@@ -1,33 +0,0 @@
-# Lint as: python3
-# Copyright 2020 The Abseil Authors.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-"""Private module implementing async_wrapped method for wrapping async tests.
-
-This is a separate private module so that parameterized still optionally
-supports Python 2 syntax.
-"""
-
-import functools
-import inspect
-
-
-def async_wrapped(func):
- @functools.wraps(func)
- async def wrapper(*args, **kwargs):
- return await func(*args, **kwargs)
- return wrapper
-
-
-def iscoroutinefunction(func):
- return inspect.iscoroutinefunction(func)