summaryrefslogtreecommitdiff
path: root/reconfigure/tests/parsers/ini_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'reconfigure/tests/parsers/ini_tests.py')
-rw-r--r--reconfigure/tests/parsers/ini_tests.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/reconfigure/tests/parsers/ini_tests.py b/reconfigure/tests/parsers/ini_tests.py
index cdb3c02..76a216c 100644
--- a/reconfigure/tests/parsers/ini_tests.py
+++ b/reconfigure/tests/parsers/ini_tests.py
@@ -18,9 +18,17 @@ s1p2=123
Node('section1',
PropertyNode('s1p1', 'asd', comment='comment 2'),
PropertyNode('s1p2', '123'),
- comment='section comment'
+ comment='section comment',
+ extra_content={'c': 'd'},
),
)
+ stringified = """a=b
+
+[section1] ;section comment
+s1p1=asd ;comment 2
+s1p2=123
+c=d
+"""
del BaseParserTest