Fixed file_helper::split_by_extenstion and added more tests for it

This commit is contained in:
gabime 2017-12-22 18:41:03 +02:00
parent f695e536dd
commit 8e3f968ba4

View File

@ -108,6 +108,9 @@ TEST_CASE("file_helper_split_by_extenstion", "[file_helper::split_by_extenstion(
test_split_ext(file_t(".././mylog.txt/xxx"), file_t(".././mylog.txt/xxx"), file_t("")); test_split_ext(file_t(".././mylog.txt/xxx"), file_t(".././mylog.txt/xxx"), file_t(""));
test_split_ext(file_t("/mylog.txt"), file_t("/mylog"), file_t(".txt")); test_split_ext(file_t("/mylog.txt"), file_t("/mylog"), file_t(".txt"));
test_split_ext(file_t("//mylog.txt"), file_t("//mylog"), file_t(".txt")); test_split_ext(file_t("//mylog.txt"), file_t("//mylog"), file_t(".txt"));
test_split_ext(file_t(""), file_t(""), file_t(""));
test_split_ext(file_t("."), file_t("."), file_t(""));
test_split_ext(file_t("..txt"), file_t("."), file_t(".txt"));
} }