feat(config): Add directive for file inclusion

This commit is contained in:
Michael Carlberg
2017-01-26 20:10:33 +01:00
parent febe6997b6
commit 874e6b0d6c
5 changed files with 66 additions and 22 deletions

View File

@ -43,6 +43,7 @@ int main() {
};
"trim"_test = [] {
expect(string_util::trim(" x x ") == "x x");
expect(string_util::ltrim("xxtestxx", 'x') == "testxx");
expect(string_util::rtrim("xxtestxx", 'x') == "xxtest");
expect(string_util::trim("xxtestxx", 'x') == "test");