File: //usr/lib/python3/dist-packages/twisted/internet/test/__pycache__/test_abstract.cpython-38.pyc
U
W[� � @ s@ d Z ddlmZmZ ddlmZ ddlmZ G dd� de�ZdS )zY
Tests for L{twisted.internet.abstract}, a collection of APIs for implementing
reactors.
� )�division�absolute_import)�SynchronousTestCase)�
isIPv6Addressc @ s@ e Zd ZdZdd� Zdd� Zdd� Zdd � Zd
d� Zdd
� Z dS )�IPv6AddressTestszw
Tests for L{isIPv6Address}, a function for determining if a particular
string is an IPv6 address literal.
c C s | � td�� dS )zB
The empty string is not an IPv6 address literal.
� N��assertFalser ��self� r �E/usr/lib/python3/dist-packages/twisted/internet/test/test_abstract.py�
test_empty s zIPv6AddressTests.test_emptyc C s | � td�� dS )zA
A single C{":"} is not an IPv6 address literal.
�:Nr r
r r r
�
test_colon s zIPv6AddressTests.test_colonc C s | � td�� dS )z@
C{"::1"} is the IPv6 loopback address literal.
z::1N��
assertTruer r
r r r
�
test_loopback"