Code

Merge branch 'jk/tests-write-script'
[git.git] / t / test-lib.sh
index b22bee7c8448542cdadac36e7ac91b71a63aa7c2..e28d5fdebe21f33b91942ce00125cc215f6427fd 100644 (file)
@@ -395,11 +395,20 @@ test_config () {
        git config "$@"
 }
 
+
 test_config_global () {
        test_when_finished "test_unconfig --global '$1'" &&
        git config --global "$@"
 }
 
+write_script () {
+       {
+               echo "#!${2-"$SHELL_PATH"}" &&
+               cat
+       } >"$1" &&
+       chmod +x "$1"
+}
+
 # Use test_set_prereq to tell that a particular prerequisite is available.
 # The prerequisite can later be checked for in two ways:
 #