added a new test case using an exterally downloaded script
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-10-05 10:11:17 +09:00
parent 50678c4973
commit ab5e2d2ed3
6 changed files with 61 additions and 2 deletions

28
t/JSON.awk.in Normal file
View File

@ -0,0 +1,28 @@
{
"first_name": "John",
"last_name": "Smith",
"is_alive": true,
"age": 27,
"address": {
"street_address": "21 2nd Street",
"city": "New York",
"state": "NY",
"postal_code": "10021-3100"
},
"phone_numbers": [
{
"type": "home",
"number": "212 555-1234"
},
{
"type": "office",
"number": "646 555-4567"
}
],
"children": [
"Catherine",
"Thomas",
"Trevor"
],
"spouse": null
}