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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
import pytest
from inline_snapshot._inline_snapshot import snapshot
from inline_snapshot.testing._example import Example
def test_list_adapter_create_inner_snapshot():
Example(
"""\
from inline_snapshot import snapshot
from dirty_equals import IsInt
def test_list():
assert [1,2,3,4] == snapshot([1,IsInt(),snapshot(),4]),"not equal"
"""
).run_inline(
["--inline-snapshot=create"],
changed_files=snapshot(
{
"test_something.py": """\
from inline_snapshot import snapshot
from dirty_equals import IsInt
def test_list():
assert [1,2,3,4] == snapshot([1,IsInt(),snapshot(3),4]),"not equal"
"""
}
),
raises=snapshot(None),
)
def test_list_adapter_fix_inner_snapshot():
Example(
"""\
from inline_snapshot import snapshot
from dirty_equals import IsInt
def test_list():
assert [1,2,3,4] == snapshot([1,IsInt(),snapshot(8),4]),"not equal"
"""
).run_inline(
["--inline-snapshot=fix"],
changed_files=snapshot(
{
"test_something.py": """\
from inline_snapshot import snapshot
from dirty_equals import IsInt
def test_list():
assert [1,2,3,4] == snapshot([1,IsInt(),snapshot(3),4]),"not equal"
"""
}
),
raises=snapshot(None),
)
@pytest.mark.no_rewriting
def test_list_adapter_reeval(executing_used):
Example(
"""\
from inline_snapshot import snapshot,Is
def test_list():
for i in (1,2,3):
assert [1,i] == snapshot([1,Is(i)]),"not equal"
"""
).run_inline(
changed_files=snapshot({}),
raises=snapshot(None),
)
def test_list_var():
Example(
"""\
from inline_snapshot import snapshot,Is
def test_list():
l=[1]
assert l == snapshot(l), "not equal"
"""
).run_inline(
["--inline-snapshot=update"],
changed_files=snapshot(
{
"test_something.py": """\
from inline_snapshot import snapshot,Is
def test_list():
l=[1]
assert l == snapshot([1]), "not equal"
"""
}
),
)
def test_tuple_constructor():
Example(
"""\
from inline_snapshot import snapshot
def test_tuple():
snapshot(tuple()), "not equal"
"""
).run_inline(
["--inline-snapshot=fix"],
changed_files=snapshot({}),
)
|