File: test_connection.py

package info (click to toggle)
python-websockets 15.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,948 kB
  • sloc: python: 25,105; javascript: 350; ansic: 148; makefile: 43
file content (15 lines) | stat: -rw-r--r-- 519 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from websockets.protocol import Protocol

from .utils import DeprecationTestCase


class BackwardsCompatibilityTests(DeprecationTestCase):
    def test_connection_class(self):
        """Connection is a deprecated alias for Protocol."""
        with self.assertDeprecationWarning(
            "websockets.connection was renamed to websockets.protocol "
            "and Connection was renamed to Protocol"
        ):
            from websockets.connection import Connection

        self.assertIs(Connection, Protocol)