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
|
from inline_snapshot import snapshot
from inline_snapshot.testing import Example
def test_adapter_mismatch():
Example(
"""\
from inline_snapshot import snapshot
def test_thing():
assert [1,2] == snapshot({1:2})
"""
).run_inline(
["--inline-snapshot=fix"],
changed_files=snapshot(
{
"test_something.py": """\
from inline_snapshot import snapshot
def test_thing():
assert [1,2] == snapshot([1, 2])
\
"""
}
),
)
def test_reeval():
Example(
"""\
from inline_snapshot import snapshot,Is
def test_thing():
for i in (1,2):
assert {1:i} == snapshot({1:Is(i)})
assert [i] == [Is(i)]
assert (i,) == (Is(i),)
"""
).run_pytest(["--inline-snapshot=short-report"], report=snapshot(""))
|