aboutsummaryrefslogtreecommitdiff
path: root/slice/slice_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'slice/slice_test.go')
-rw-r--r--slice/slice_test.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/slice/slice_test.go b/slice/slice_test.go
index f6aecbc..0cf1c40 100644
--- a/slice/slice_test.go
+++ b/slice/slice_test.go
@@ -19,3 +19,13 @@ func TestPatch(t *testing.T) {
actual := Patch(source, patch)
testutils.AssertSame(t, target, actual, "Target obtained from patch application")
}
+
+func TestEmptyPatch(t *testing.T) {
+ source := Slice{1, 2, 3, 4}
+ target := Slice{1, 2, 3, 4}
+ patch := Diff(source, target)
+ testutils.AssertSame(t, *new([]Del), patch.Del, "Patch del part")
+ testutils.AssertSame(t, *new([]Ins), patch.Ins, "Patch ins part")
+ actual := Patch(source, patch)
+ testutils.AssertSame(t, target, actual, "Target obtained from patch application")
+}