Файловый менеджер - Редактировать - /opt/imh-python/lib/python3.9/site-packages/keystoneauth1/tests/unit/__pycache__/test_matchers.cpython-39.pyc
Ðазад
a s�hH � @ s6 d dl Z d dl mZ d dlmZ G dd� de j�ZdS )� N)�matchersc @ sr e Zd ZdZdZdZdZe�e�Z eegZ egZeee fgZde�d�e fgZ dd� Zd d � Zdd� Zd d� ZdS )� TestXMLEqualss� <?xml version="1.0" encoding="UTF-8"?> <test xmlns="https://docs.openstack.org/identity/api/v2.0"> <first z="0" y="1" x="2"/> <second a="a" b="b"></second> </test> s� <?xml version="1.0" encoding="UTF-8"?> <test xmlns="https://docs.openstack.org/identity/api/v2.0"> <second a="a" b="b"/> <first z="0" y="1" x="2"></first> </test> s� <?xml version="1.0" encoding="UTF-8"?> <test xmlns="https://docs.openstack.org/identity/api/v2.0"> <nope_it_fails/> </test> z�expected = <test xmlns="https://docs.openstack.org/identity/api/v2.0"> <first z="0" y="1" x="2"/> <second a="a" b="b"/> </test> actual = <test xmlns="https://docs.openstack.org/identity/api/v2.0"> <nope_it_fails/> </test> z XMLEquals(�)c C s` | j }| j}| j}|D ]}| �|�|�� q|D ]*}|�|�}| �|� | �t|dd �� q0d S )N�describe)�matches_matcher�matches_matches�matches_mismatchesZassertIsNone�matchZassertIsNotNone�getattr)�self�matcher�matchesZ mismatches� candidate�mismatch� r ��/root/rpmbuild/BUILDROOT/imh-python39-modules-3.9.7-92.el8.x86_64/opt/imh-python/lib/python3.9/site-packages/keystoneauth1/tests/unit/test_matchers.py�test_matches_match>