File: test_fix_int_long_tuple.py

package info (click to toggle)
modernize 0.9-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 416 kB
  • sloc: python: 2,016; makefile: 145
file content (33 lines) | stat: -rw-r--r-- 552 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from __future__ import generator_stop

from utils import check_on_input

INT_LONG_ISINSTANCE = (
    """\
isinstance(1, (int, long))
""",
    """\
from __future__ import absolute_import
import six
isinstance(1, six.integer_types)
""",
)

LONG_INT_ISINSTANCE = (
    """\
isinstance(1, (long, int))
""",
    """\
from __future__ import absolute_import
import six
isinstance(1, six.integer_types)
""",
)


def test_int_long_isinstance():
    check_on_input(*INT_LONG_ISINSTANCE)


def test_long_int_isinstance():
    check_on_input(*LONG_INT_ISINSTANCE)