aboutsummaryrefslogtreecommitdiff
path: root/tests/repository.cpp
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2025-03-21 01:04:57 +0100
committerEugen Wissner <belka@caraus.de>2025-03-21 01:04:57 +0100
commit9bec46cc1fb6a03d320955054a10154264a3d4ac (patch)
tree3c9f8abca31394aa6c6ad533856aba72d3de2943 /tests/repository.cpp
parent226dfdbc021e9500e70f667bc3ec6131e3b9694e (diff)
downloadkazbek-9bec46cc1fb6a03d320955054a10154264a3d4ac.tar.gz
Split cmake files between directories
Diffstat (limited to 'tests/repository.cpp')
-rw-r--r--tests/repository.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/repository.cpp b/tests/repository.cpp
new file mode 100644
index 0000000..1f1fb19
--- /dev/null
+++ b/tests/repository.cpp
@@ -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);
+}