Skip to content

Commit 46e7789

Browse files
committed
test: improve coverage for json/lex_string.mbt
**Disclaimer:** This PR was generated by an LLM agent as part of an experiment. ## Summary ``` coverage of `json/lex_string.mbt`: 76.5% -> 82.4% ```
1 parent ddb9946 commit 46e7789

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

json/lex_string_test.mbt

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Copyright 2025 International Digital Economy Academy
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
test "lex_string with forward slash escape" {
16+
inspect!(
17+
@json.parse!("\"\\/\""),
18+
content=
19+
#|String("/")
20+
,
21+
)
22+
}
23+
24+
test "lex_hex_digits incomplete hex digits" {
25+
inspect!(@json.parse?("\"\\u123"), content="Err(Unexpected end of file)")
26+
}

0 commit comments

Comments
 (0)