summaryrefslogtreecommitdiff
path: root/pylint/test/functional/not_async_context_manager.txt
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/functional/not_async_context_manager.txt')
-rw-r--r--pylint/test/functional/not_async_context_manager.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/pylint/test/functional/not_async_context_manager.txt b/pylint/test/functional/not_async_context_manager.txt
new file mode 100644
index 0000000..ae9fad7
--- /dev/null
+++ b/pylint/test/functional/not_async_context_manager.txt
@@ -0,0 +1,5 @@
+not-async-context-manager:51:bad_coro:Async context manager 'int' doesn't implement __aenter__ and __aexit__.
+not-async-context-manager:53:bad_coro:Async context manager 'generator' doesn't implement __aenter__ and __aexit__.
+not-async-context-manager:55:bad_coro:Async context manager 'ContextManager' doesn't implement __aenter__ and __aexit__.
+not-async-context-manager:57:bad_coro:Async context manager 'PartialAsyncContextManager' doesn't implement __aenter__ and __aexit__.
+not-async-context-manager:59:bad_coro:Async context manager 'SecondPartialAsyncContextManager' doesn't implement __aenter__ and __aexit__.