aboutsummaryrefslogtreecommitdiff
path: root/testsuite/cut.tests
blob: 110340277058a50eaf04da398d4ae44d4f6f0428 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# Copyright 2007 by Denys Vlasenko <vda.linux@googlemail.com>
# Licensed under GPLv2, see file LICENSE in this source tree.

. ./testing.sh

# testing "test name" "options" "expected result" "file input" "stdin"
#   file input will be file called "input"
#   test can create a file "actual" instead of writing to stdout

testing "cut '-' (stdin) and multi file handling" \
	"cut -d' ' -f2 - input" \
	"over\n""quick\n" \
	"the quick brown fox\n" \
	"jumps over the lazy dog\n" \

exit $FAILCOUNT