add tests and failsafe for values true and false

This commit is contained in:
Tykayn 2025-05-13 23:59:21 +02:00 committed by tykayn
parent 5b0271716c
commit cb6075fc61
10 changed files with 376 additions and 230 deletions

View file

@ -21,6 +21,26 @@
"osm_id": 1234567890,
"non_spécifié": "non spécifié"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
4.822159,
45.635079
]
},
"properties": {
"boolean_enum": "True;false",
"boolean_simple": "True",
"boolean_simple_false": "False",
"boolean_simple_false_uppercase": "FALSE",
"boolean_simple_true": "TRUE",
"boolean_simple_one": "1",
"boolean_simple_zero": "0",
"id": "0000002"
}
}
]
}