mirror of
https://github.com/szymon-jozef/static-site-generator.git
synced 2026-09-07 20:20:41 +02:00
removed test of removed function
This commit is contained in:
@@ -19,12 +19,6 @@ TEST_CASE("Checking config file read", "[config]") {
|
|||||||
REQUIRE(config.general.title == "Blog");
|
REQUIRE(config.general.title == "Blog");
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_CASE("convert_string_to_set parses inline YAML string list") {
|
|
||||||
const std::string input = "[\"haha\", \"dupa\", \"xdd\"]";
|
|
||||||
const std::set<std::string> output = {"haha", "dupa", "xdd"};
|
|
||||||
REQUIRE(convert_string_to_set(input) == output);
|
|
||||||
}
|
|
||||||
|
|
||||||
TEST_CASE("get_metadata function data correctness test") {
|
TEST_CASE("get_metadata function data correctness test") {
|
||||||
const std::string FILE_NAME = "./tests/post.md";
|
const std::string FILE_NAME = "./tests/post.md";
|
||||||
Metadata result = get_metadata(FILE_NAME).value();
|
Metadata result = get_metadata(FILE_NAME).value();
|
||||||
|
|||||||
Reference in New Issue
Block a user