diff --git a/toREST/tests/config_test.cpp b/toREST/tests/config_test.cpp new file mode 100644 index 0000000..77e5072 --- /dev/null +++ b/toREST/tests/config_test.cpp @@ -0,0 +1,9 @@ +#include +#include + +SCENARIO("The configuration have default properties") { + Config config; + REQUIRE_FALSE(config.default_download_dir.empty()); + REQUIRE_FALSE(config.root_dir.empty()); + REQUIRE(config.default_download_dir == "toREST"); +} \ No newline at end of file