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

breakage on executable fix

This commit is contained in:
Alberto Fanjul
2018-05-27 14:07:30 +02:00
parent fd89beb709
commit be7e60303e
2 changed files with 9 additions and 0 deletions

View File

@@ -20,4 +20,11 @@ test_expect_success "var2 execute code" '
test "$var2" != "hack"
'
test_expect_success "var2 execute code" '
test "$var3" == "100$"
'
test_expect_success "var2 execute code" '
test "$var4" == "use a ``"
'
test_done

View File

@@ -1,3 +1,5 @@
[sec1]
var1="$(echo hack)"
var2="`echo hack`"
var3="100$"
var4="use a `"