blob: 95e7abb58f867f7cc26aff874601b76c08f58e28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/bin/sh
# Copyright 2021 by Ron Yorston
# Licensed under GPLv2, see file LICENSE in this source tree.
. ./testing.sh
# testing "test name" "commands" "expected result" "file input" "stdin"
testing "nl numbers all lines" \
"nl -b a input" \
"\
1 line 1
2
3 line 3
" \
"line 1\n\nline 3\n" \
""
testing "nl numbers non-empty lines" \
"nl -b t input" \
"\
1 line 1
2 line 3
" \
"line 1\n\nline 3\n" \
""
testing "nl numbers no lines" \
"nl -b n input" \
"\
line 1
line 3
" \
"line 1\n\nline 3\n" \
""
exit $FAILCOUNT
|