feat: add support for ini files

This commit is contained in:
Bruno Carlin 2025-06-09 15:15:21 +02:00
parent 89e6dbfb98
commit fdf99daa9c
12 changed files with 94 additions and 4 deletions

3
test_data/full.ini Normal file
View file

@ -0,0 +1,3 @@
string = default string
invariant = should not change
int = 1

1
test_data/invalid.ini Normal file
View file

@ -0,0 +1 @@
String not ini

1
test_data/part1.ini Normal file
View file

@ -0,0 +1 @@
string = foo

1
test_data/part2.ini Normal file
View file

@ -0,0 +1 @@
int = 42

1
test_data/same1.ini Normal file
View file

@ -0,0 +1 @@
string = foo

1
test_data/same2.ini Normal file
View file

@ -0,0 +1 @@
string = bar

3
test_data/unknown.ini Normal file
View file

@ -0,0 +1,3 @@
string = config string
int = 42
unknown = foo

2
test_data/valid.ini Normal file
View file

@ -0,0 +1,2 @@
string = config string
int = 42