You've already forked bash-ini-parser
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:
12
t/t0004/comments.ini
Normal file
12
t/t0004/comments.ini
Normal 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
|
9
t/t0004/comments.out.correct
Normal file
9
t/t0004/comments.out.correct
Normal 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"
|
Reference in New Issue
Block a user