diff options
| author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-02-14 22:03:25 +0300 |
|---|---|---|
| committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-02-14 22:03:25 +0300 |
| commit | ce2e0eeb7b0eeb8d5f188ec98e1f1b3d1307ca9c (patch) | |
| tree | cb8737b64a6ea2dd4e0e046582d7714eb1b171a7 /tests/feature_check/async_check.py | |
| parent | c6fd9ba4f371dc8f2ec5e1859587fafa15bef9d0 (diff) | |
tests/run-tests: Allow to skip tests using async/await keywords.
Diffstat (limited to 'tests/feature_check/async_check.py')
| -rw-r--r-- | tests/feature_check/async_check.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/feature_check/async_check.py b/tests/feature_check/async_check.py new file mode 100644 index 000000000..0f6361cd1 --- /dev/null +++ b/tests/feature_check/async_check.py @@ -0,0 +1,3 @@ +# check if async/await keywords are supported +async def foo(): + await 1 |
