Tests redirect to err file when grepping stderr
[stgit.git] / t / t6000-config.sh
blob425991a6ee5819d4e632a84f52300526fd8a8e15
1 #!/bin/sh
3 # Copyright (c) 2017 Intel Corporation
6 test_description='Simple configuration tests'
8 . ./test-lib.sh
10 # Note that it is not possible to use git-config to write such a value, but
11 # they are expected to be interpret-able by git commands
12 test_expect_success 'stg accepts keys without values' '
13 echo "[stgit]" >> .git/config &&
14 echo " aboolean" >> .git/config &&
15 stg init &&
16 stg status
19 test_done