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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
"""Tests for isort action comments, such as isort: skip"""
import isort
def test_isort_off_and_on():
"""Test so ensure isort: off action comment and associated on action comment work together"""
# as top of file comment
assert (
isort.code(
"""# isort: off
import a
import a
# isort: on
import a
import a
"""
)
== """# isort: off
import a
import a
# isort: on
import a
"""
)
# as middle comment
assert (
isort.code(
"""
import a
import a
# isort: off
import a
import a
"""
)
== """
import a
# isort: off
import a
import a
"""
)
|