示例#1
0
def test_is_completely_asynchronous():
    conn = TCPAsyncSocketConnection()
    assertions = 0
    for attribute in dir(conn):
        if attribute.startswith("read_"):
            assert iscoroutinefunction(conn.__getattribute__(attribute))
            assertions += 1
    assert assertions > 0, "None of the read_* attributes were async"
示例#2
0
    def test_is_completely_asynchronous(self):
        conn = TCPAsyncSocketConnection()

        for attribute in dir(conn):
            if attribute.startswith("read_"):
                self.assertTrue(iscoroutinefunction(conn.__getattribute__(attribute)))