mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
tests/cut: positive testcases for feature complete
This commit is contained in:
parent
7ff57d6b66
commit
cb6f84e3d8
22 changed files with 142 additions and 41 deletions
5
tests/fixtures/cut/delimiter_specified.expected
vendored
Normal file
5
tests/fixtures/cut/delimiter_specified.expected
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
foo:bar:qux
|
||||
one:two:four:six:seven
|
||||
alpha:beta:delta:zeta:eta:iota:kappa:lambda:mu
|
||||
the quick brown fox jumps over the lazy dog
|
||||
sally sells seashells down by the seashore where are the seashells sally sells
|
1
tests/fixtures/cut/lists.txt
vendored
1
tests/fixtures/cut/lists.txt
vendored
|
@ -2,3 +2,4 @@ foo:bar:baz:qux:quux
|
|||
one:two:three:four:five:six:seven
|
||||
alpha:beta:gamma:delta:epsilon:zeta:eta:theta:iota:kappa:lambda:mu
|
||||
the quick brown fox jumps over the lazy dog
|
||||
sally sells seashells down by the seashore where are the seashells sally sells
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
bar#baz#qux#quux
|
||||
two#three#four#five#six#seven
|
||||
beta#gamma#delta#epsilon#zeta#eta#theta#iota#kappa#lambda#mu
|
||||
the quick brown fox jumps over the lazy dog
|
4
tests/fixtures/cut/lists_char_range.expected
vendored
4
tests/fixtures/cut/lists_char_range.expected
vendored
|
@ -1,4 +0,0 @@
|
|||
:bar:ba
|
||||
:two:th
|
||||
ha:beta
|
||||
quick
|
|
@ -1,4 +0,0 @@
|
|||
quux
|
||||
five:six:seven
|
||||
epsilon:zeta:eta:theta:iota:kappa:lambda:mu
|
||||
the quick brown fox jumps over the lazy dog
|
|
@ -1,4 +0,0 @@
|
|||
foo:baz
|
||||
one:three
|
||||
alpha:gamma
|
||||
the quick brown fox jumps over the lazy dog
|
4
tests/fixtures/cut/lists_prefix.expected
vendored
4
tests/fixtures/cut/lists_prefix.expected
vendored
|
@ -1,4 +0,0 @@
|
|||
foo:bar:ba
|
||||
one:two:th
|
||||
alpha:beta
|
||||
the quick
|
4
tests/fixtures/cut/lists_tail.expected
vendored
4
tests/fixtures/cut/lists_tail.expected
vendored
|
@ -1,4 +0,0 @@
|
|||
bar:baz:qux:quux
|
||||
two:three:four:five:six:seven
|
||||
beta:gamma:delta:epsilon:zeta:eta:theta:iota:kappa:lambda:mu
|
||||
the quick brown fox jumps over the lazy dog
|
5
tests/fixtures/cut/output_delimiter.expected
vendored
Normal file
5
tests/fixtures/cut/output_delimiter.expected
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
foo@bar@qux
|
||||
one@two@four@six@seven
|
||||
alpha@beta@delta@zeta@eta@iota@kappa@lambda@mu
|
||||
the quick brown fox jumps over the lazy dog
|
||||
sally sells seashells down by the seashore where are the seashells sally sells
|
5
tests/fixtures/cut/sequences/byte_aggregate.expected
vendored
Normal file
5
tests/fixtures/cut/sequences/byte_aggregate.expected
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
fo:arbaz:qux:quux
|
||||
on:wothree:four:five:six:seven
|
||||
alh:bta:gamma:delta:epsilon:zeta:eta:theta:iota:kappa:lambda:mu
|
||||
th uik brown fox jumps over the lazy dog
|
||||
sal slls seashells down by the seashore where are the seashells sally sells
|
5
tests/fixtures/cut/sequences/byte_prefix.expected
vendored
Normal file
5
tests/fixtures/cut/sequences/byte_prefix.expected
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
fo
|
||||
on
|
||||
al
|
||||
th
|
||||
sa
|
5
tests/fixtures/cut/sequences/byte_range.expected
vendored
Normal file
5
tests/fixtures/cut/sequences/byte_range.expected
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
oo:
|
||||
ne:
|
||||
lph
|
||||
he
|
||||
all
|
5
tests/fixtures/cut/sequences/byte_singular.expected
vendored
Normal file
5
tests/fixtures/cut/sequences/byte_singular.expected
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
o
|
||||
n
|
||||
l
|
||||
h
|
||||
a
|
5
tests/fixtures/cut/sequences/byte_subsumed.expected
vendored
Normal file
5
tests/fixtures/cut/sequences/byte_subsumed.expected
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
oo:bar:baz:qux:quux
|
||||
ne:two:three:four:five:six:seven
|
||||
lpha:beta:gamma:delta:epsilon:zeta:eta:theta:iota:kappa:lambda:mu
|
||||
he quick brown fox jumps over the lazy dog
|
||||
ally sells seashells down by the seashore where are the seashells sally sells
|
5
tests/fixtures/cut/sequences/byte_suffix.expected
vendored
Normal file
5
tests/fixtures/cut/sequences/byte_suffix.expected
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
oo:bar:baz:qux:quux
|
||||
ne:two:three:four:five:six:seven
|
||||
lpha:beta:gamma:delta:epsilon:zeta:eta:theta:iota:kappa:lambda:mu
|
||||
he quick brown fox jumps over the lazy dog
|
||||
ally sells seashells down by the seashore where are the seashells sally sells
|
5
tests/fixtures/cut/sequences/field_aggregate.expected
vendored
Normal file
5
tests/fixtures/cut/sequences/field_aggregate.expected
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
foo:bar:baz:qux:quux
|
||||
one:two:three:four:five:six:seven
|
||||
alpha:beta:gamma:delta:epsilon:zeta:eta:theta:iota:kappa:lambda:mu
|
||||
the quick brown fox jumps over the lazy dog
|
||||
sally sells down the seashore are the seashells sally sells
|
5
tests/fixtures/cut/sequences/field_prefix.expected
vendored
Normal file
5
tests/fixtures/cut/sequences/field_prefix.expected
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
foo:bar:baz:qux:quux
|
||||
one:two:three:four:five:six:seven
|
||||
alpha:beta:gamma:delta:epsilon:zeta:eta:theta:iota:kappa:lambda:mu
|
||||
the quick brown fox jumps over the lazy dog
|
||||
sally sells
|
5
tests/fixtures/cut/sequences/field_range.expected
vendored
Normal file
5
tests/fixtures/cut/sequences/field_range.expected
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
foo:bar:baz:qux:quux
|
||||
one:two:three:four:five:six:seven
|
||||
alpha:beta:gamma:delta:epsilon:zeta:eta:theta:iota:kappa:lambda:mu
|
||||
the quick brown fox jumps over the lazy dog
|
||||
sells seashells down
|
|
@ -1,4 +1,5 @@
|
|||
foo:bar:baz:qux:quux
|
||||
one:two:three:four:five:six:seven
|
||||
alpha:beta:gamma:delta:epsilon:zeta:eta:theta:iota:kappa:lambda:mu
|
||||
brown
|
||||
the quick brown fox jumps over the lazy dog
|
||||
sells
|
5
tests/fixtures/cut/sequences/field_subsumed.expected
vendored
Normal file
5
tests/fixtures/cut/sequences/field_subsumed.expected
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
foo:bar:baz:qux:quux
|
||||
one:two:three:four:five:six:seven
|
||||
alpha:beta:gamma:delta:epsilon:zeta:eta:theta:iota:kappa:lambda:mu
|
||||
the quick brown fox jumps over the lazy dog
|
||||
sells seashells down by the seashore where are the seashells sally sells
|
5
tests/fixtures/cut/sequences/field_suffix.expected
vendored
Normal file
5
tests/fixtures/cut/sequences/field_suffix.expected
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
foo:bar:baz:qux:quux
|
||||
one:two:three:four:five:six:seven
|
||||
alpha:beta:gamma:delta:epsilon:zeta:eta:theta:iota:kappa:lambda:mu
|
||||
the quick brown fox jumps over the lazy dog
|
||||
sells seashells down by the seashore where are the seashells sally sells
|
Loading…
Add table
Add a link
Reference in a new issue