From 7ed0ea9acebb11d70136326863743bd96b515430 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Sat, 25 Oct 2025 17:23:18 -0700 Subject: Some small improvements --- asspb_test.go | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'asspb_test.go') diff --git a/asspb_test.go b/asspb_test.go index 6803733..b92a95b 100644 --- a/asspb_test.go +++ b/asspb_test.go @@ -170,6 +170,15 @@ field: 2`, desc: "CStyleLineComment", msg: `field: {} // line comment`, want: map[string]any{"field": map[string]any{}}, + }, { + desc: "ConcatStrings", + msg: `field: 'that'"'"'s cool'`, + want: map[string]any{"field": "that's cool"}, + }, { + desc: "RemoveNewline", + msg: `field: 'remove newline \ +from string'`, + want: map[string]any{"field": "remove newline from string"}, }} { t.Run(tc.desc, func(t *testing.T) { t.Parallel() -- cgit v1.3.1