1
0
forked from Alepha/Alepha

I have the universal handler working for value-test cases...

This commit is contained in:
2023-10-28 10:57:41 -04:00
parent 3a3e709236
commit 48549ff465
3 changed files with 404 additions and 49 deletions

View File

@ -39,7 +39,7 @@ static auto init= Alepha::Utility::enroll <=[]
{ "Trailing spaces should be kept", { helloWorld + " ", 100, 0 }, helloWorld + " " },
{ "Trailing spaces should be dropped", { helloWorld + " ", helloWorld.size(), 0 }, helloWorld },
{ "All but 2 trailing spaces dropped", { helloWorld + " ", helloWorld.size() + 2, 0 },
helloWorld + " "},
helloWorld + " " },
{ "Split line", { helloWorld, 8, 0 }, "Hello \nWorld" }, // TODO: Should we swallow trailing spaces?
};