blob: ca0e511c11b8eecb8340cb1f6e7e94d157da5dae [file] [log] [blame]
Denys Vlasenkoded688c2009-11-04 15:31:19 +01001#!/bin/sh
2# Copyright 2009 by Denys Vlasenko
3# Licensed under GPL v2, see file LICENSE for details.
4
Mike Frysingercaa79402009-11-04 18:41:22 -05005. ./testing.sh
Denys Vlasenkoded688c2009-11-04 15:31:19 +01006
7# testing "test name" "options" "expected result" "file input" "stdin"
8
9testing "fold -s" "fold -w 7 -s" \
10 "123456\n\t\nasdf" \
11 "" \
12 "123456\tasdf" \
13
14exit $FAILCOUNT