diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/utils.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/utils.cpp b/tests/utils.cpp index d1f0edf..b8a3e75 100644 --- a/tests/utils.cpp +++ b/tests/utils.cpp @@ -8,6 +8,7 @@ #include <utils/empty_if_fixed_server.hpp> #include <utils/get_first_non_empty.hpp> #include <utils/time.hpp> +#include <utils/system.hpp> #include <utils/scopeguard.hpp> using namespace std::string_literals; @@ -151,3 +152,9 @@ TEST_CASE("scope_guard") } CHECK(res); } + +TEST_CASE("system_name") +{ + CHECK(utils::get_system_name() != "Unknown"); + CHECK(!utils::get_system_name().empty()); +}
\ No newline at end of file |