1
0
mirror of https://github.com/albfan/bash-ini-parser.git synced 2025-08-09 05:22:44 +03:00

add broken test for comments

This commit is contained in:
albfan
2018-01-22 22:43:58 +01:00
parent 2ddf0abc5c
commit 0184648014
3 changed files with 40 additions and 0 deletions

12
t/t0004/comments.ini Normal file
View File

@@ -0,0 +1,12 @@
;initial comment
[sec1]
var1=foo
var2=hoge
var3=hoge#bar
var4="#hello #bye #chao"
[sec2]
;another comment
#a comment
var2=foo
var4="123#456"
var5=234#456

View File

@@ -0,0 +1,9 @@
[sec1]
var1="foo"
var2="hoge"
var3="hoge#bar"
var4="#hello #bye #chao"
[sec2]
var2="foo"
var4="123#456"
var5="234#456"