Initial commit

This commit is contained in:
2025-04-19 14:48:02 +02:00
commit d10c5c980c
18 changed files with 1180 additions and 0 deletions

13
tests/repository.cpp Normal file
View File

@@ -0,0 +1,13 @@
#define BOOST_TEST_MODULE repository tests
#include <boost/test/unit_test.hpp>
#include "katja/repository.hpp"
BOOST_AUTO_TEST_CASE(construct_valid_database_package)
{
katja::package_identifier given{ "libarchive", "3.7.8", "i586", "slackware" };
std::string actual = given.to_string();
std::string expected = "libarchive;3.7.8;i586;slackware";
BOOST_TEST(actual == expected);
}