initial commits

master
Charles Iliya Krempeaux 2023-12-09 09:33:49 -08:00
parent bf6d657b20
commit 8f9db0b63b
1 changed files with 19 additions and 0 deletions

View File

@ -134,6 +134,25 @@ func TestSkipTolerant(t *testing.T) {
Value: []byte(" \t\t 😈 :-)\r\n"), Value: []byte(" \t\t 😈 :-)\r\n"),
Expected: []byte("😈 :-)\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 { for testNumber, test := range tests {