summaryrefslogtreecommitdiff
path: root/t/README
diff options
context:
space:
mode:
authorLibravatar Michael S. Tsirkin <mst@redhat.com>2014-04-27 21:15:47 +0300
committerLibravatar Junio C Hamano <gitster@pobox.com>2014-06-10 13:09:00 -0700
commitac9afcc31cd1f7c00c2747132e5f512173613fd9 (patch)
treebc03b31f830e29630af35e9afbd2e796f1dd2e94 /t/README
parentGit 1.9.0 (diff)
downloadtgif-ac9afcc31cd1f7c00c2747132e5f512173613fd9.tar.xz
test: add test_write_lines helper
API and implementation as suggested by Junio. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/README')
-rw-r--r--t/README22
1 files changed, 22 insertions, 0 deletions
diff --git a/t/README b/t/README
index caeeb9dedc..2d6232fbd3 100644
--- a/t/README
+++ b/t/README
@@ -596,6 +596,28 @@ library for your script to use.
...
'
+ - test_write_lines <text>
+
+ Split <text> to white-space separated words and write it out on standard
+ output, one word per line.
+ Useful to prepare multi-line files in a compact form.
+
+ Example:
+
+ test_write_lines "a b c d e f g" >foo
+
+ Is a more compact equivalent of:
+ cat >foo <<-EOF
+ a
+ b
+ c
+ d
+ e
+ f
+ g
+ EOF
+
+
- test_pause
This command is useful for writing and debugging tests and must be