summaryrefslogtreecommitdiff
path: root/_test/test_deprecation.py
blob: b267e66d2600f0b208b927f4e6c1e7314a30803b (plain)
1
2
3
4
5
6
7
8
9
10
11
# coding: utf-8

import sys
import pytest  # NOQA


@pytest.mark.skipif(sys.version_info < (3, 7) or sys.version_info >= (3, 9),
                    reason='collections not available?')
def test_collections_deprecation():
    with pytest.warns(DeprecationWarning):
        from collections import Hashable  # NOQA