diff --git a/sp/skip_tolerant_test.go b/sp/skip_tolerant_test.go index 78f5653..3424f8a 100644 --- a/sp/skip_tolerant_test.go +++ b/sp/skip_tolerant_test.go @@ -134,6 +134,25 @@ func TestSkipTolerant(t *testing.T) { Value: []byte(" \t\t 😈 :-)\r\n"), Expected: []byte("😈 :-)\r\n"), }, + + + + { + Value: []byte("once :-)\r\n"), + Expected: []byte("once :-)\r\n"), + }, + { + Value: []byte("twice 😈 *-*\n"), + Expected: []byte("twice 😈 *-*\n"), + }, + { + Value: []byte("thrice 🙂"), + Expected: []byte("thrice 🙂"), + }, + { + Value: []byte("fource 👾"), + Expected: []byte("fource 👾"), + }, } for testNumber, test := range tests {