diff options
author | Frank Lichtenheld <frank@lichtenheld.de> | 2007-05-21 00:12:57 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-05-20 16:00:22 -0700 |
commit | cab333cb6ac0ac857dcfb112989ea32aea5d0ec1 (patch) | |
tree | 048406d38f9548482a9f58d9286e20b43d3b12f5 /t | |
parent | 0a76f6652459e4bbf5311347e9bf726e203e86d6 (diff) | |
download | git-cab333cb6ac0ac857dcfb112989ea32aea5d0ec1.tar.gz git-cab333cb6ac0ac857dcfb112989ea32aea5d0ec1.tar.xz |
t1300: Add tests for git-config --bool --get
Noticed that there were only tests for --int, but not
for --bool. Add some.
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't')
-rwxr-xr-x | t/t1300-repo-config.sh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh index a1d777ca8..3f3fd2d7f 100755 --- a/t/t1300-repo-config.sh +++ b/t/t1300-repo-config.sh @@ -436,6 +436,40 @@ test_expect_success numbers ' test z1048576 = "z$m" ' +cat > expect << EOF +true +false +true +false +true +false +true +false +EOF + +test_expect_success bool ' + + git-config bool.true1 01 && + git-config bool.true2 -1 && + git-config bool.true3 YeS && + git-config bool.true4 true && + git-config bool.false1 000 && + git-config bool.false2 "" && + git-config bool.false3 nO && + git-config bool.false4 FALSE && + rm -f result && + for i in 1 2 3 4 + do + git-config --bool --get bool.true$i >>result + git-config --bool --get bool.false$i >>result + done && + cmp expect result' + +test_expect_failure 'invalid bool' ' + + git-config bool.nobool foobar && + git-config --bool --get bool.nobool' + rm .git/config git-config quote.leading " test" |