This commit is contained in:
2024-08-23 19:16:55 -05:00
parent 0ddc714750
commit 84688f8166

View File

@ -49,6 +49,9 @@ TEST(utils, convert_api_date) {
TEST(utils, generate_sha256) { TEST(utils, generate_sha256) {
auto res = utils::file::file{__FILE__}.sha256(); auto res = utils::file::file{__FILE__}.sha256();
std::cout << res << std::endl; EXPECT_TRUE(res.has_value());
if (res.has_value()) {
std::cout << res.value() << std::endl;
}
} }
} // namespace repertory } // namespace repertory