Files @ c7316d08aab2
Branch filter:

Location: light9/stubs/louie/test/test_dispatcher.pyi

drewp@bigasterisk.com
checkpoint show data
# Stubs for louie.test.test_dispatcher (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

import unittest
from typing import Any

def x(a: Any): ...

class Dummy: ...

class Callable:
    def __call__(self, a: Any): ...
    def a(self, a: Any): ...

class TestDispatcher(unittest.TestCase):
    def setUp(self) -> None: ...
    def test_Exact(self) -> None: ...
    def test_AnonymousSend(self) -> None: ...
    def test_AnyRegistration(self) -> None: ...
    def test_AllRegistration(self) -> None: ...
    def test_receiver_disconnects_itself(self): ...
    def test_GarbageCollected(self) -> None: ...
    def test_GarbageCollectedObj(self): ...
    def test_MultipleRegistration(self) -> None: ...
    def test_robust(self) -> None: ...