refactored

This commit is contained in:
2026-05-27 13:09:17 +02:00
parent 93a53ccb92
commit 519571fe55
10 changed files with 690 additions and 595 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
"""Tests for jay_diff."""
"""Tests for diff."""
import pytest
from copy import deepcopy
from jay_diff import (
from diff import (
jay_diff_add, jay_diff_del, jay_diff_upd, jay_diff_upd_add,
jay_diff_full, jay_merge_add, jay_merge_delete, jay_merge_update, jay_merge_full,
)
+2 -2
View File
@@ -1,5 +1,5 @@
"""
Round-trip tests for jay_diff using real snapshot records from ./tests/data/.
Round-trip tests for diff using real snapshot records from ./tests/data/.
For every pair of consecutive records (within a file and across adjacent files)
we verify:
@@ -14,7 +14,7 @@ import pathlib
import pytest
from jay_diff import jay_diff_full, jay_merge_full
from diff import jay_diff_full, jay_merge_full
DATA_DIR = pathlib.Path(__file__).parent / "data"