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

from __future__ import print_function

import sys
import pytest  # NOQA


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