1 changed files with 9 additions and 0 deletions
@ -0,0 +1,9 @@
|
||||
#include <Catch/catch.hpp> |
||||
#include <config.hpp> |
||||
|
||||
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"); |
||||
} |
||||
Loading…
Reference in new issue