diff options
author | 2011-12-19 16:05:16 -0800 | |
---|---|---|
committer | 2011-12-19 16:05:16 -0800 | |
commit | 367d20ec6b9e8e297537f665fb528346bd0aff27 (patch) | |
tree | bce97747bf55c8b3adffa0a058984aba5ea3225f /t/t0302-credential-store.sh | |
parent | git-p4: fix skipSubmitEdit regression (diff) | |
parent | t: add test harness for external credential helpers (diff) | |
download | tgif-367d20ec6b9e8e297537f665fb528346bd0aff27.tar.xz |
Merge branch 'jk/credentials'
* jk/credentials:
t: add test harness for external credential helpers
credentials: add "store" helper
strbuf: add strbuf_add*_urlencode
Makefile: unix sockets may not available on some platforms
credentials: add "cache" helper
docs: end-user documentation for the credential subsystem
credential: make relevance of http path configurable
credential: add credential.*.username
credential: apply helper config
http: use credential API to get passwords
credential: add function for parsing url components
introduce credentials API
t5550: fix typo
test-lib: add test_config_global variant
Conflicts:
strbuf.c
Diffstat (limited to 't/t0302-credential-store.sh')
-rwxr-xr-x | t/t0302-credential-store.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/t/t0302-credential-store.sh b/t/t0302-credential-store.sh new file mode 100755 index 0000000000..f61b40c69b --- /dev/null +++ b/t/t0302-credential-store.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +test_description='credential-store tests' +. ./test-lib.sh +. "$TEST_DIRECTORY"/lib-credential.sh + +helper_test store + +test_done |