blob: d4eecd9a986858370730e78137027d3f8e071f73 [file] [log] [blame]
Timothy Elliott270366f2012-02-10 21:59:57 -08001#!/bin/bash
2
3[ -f testing.sh ] && . testing.sh
4
5#testing "name" "command" "result" "infile" "stdin"
6
7testing "head, stdin" "head -n 1 && echo yes" "one\nyes\n" "" "one\ntwo"
8testing "head, stdin via -" "head -n 1 - && echo yes" "one\nyes\n" "" "one\ntwo"
9testing "head, file" "head input -n 1 && echo yes" "one\nyes\n" "one\ntwo" ""
Rob Landleyd5c92c52015-03-29 12:03:46 -050010testing "head -number" "head -2 input && echo yes" "one\ntwo\nyes\n" \
11 "one\ntwo\nthree\nfour" ""
Timothy Elliott270366f2012-02-10 21:59:57 -080012testing "head, default lines" "head" "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n" "" "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12"
13
14echo "foo
15bar
16baz" > file1
17testing "head, multiple files" "head -n 2 input file1" "==> input <==\none\ntwo\n\n==> file1 <==\nfoo\nbar\n" "one\ntwo\nthree\n" ""
18rm file1
19