aboutsummaryrefslogtreecommitdiff
path: root/tests/repository.cpp
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2025-04-19 14:48:48 +0200
committerEugen Wissner <belka@caraus.de>2025-04-19 14:48:48 +0200
commit20f3d98d637c5992c53f19590c15fa923f4eedcd (patch)
tree76842f0252e4179d47d5c33bd0338cbcd479fe71 /tests/repository.cpp
parent0e6de99821d2262ada8e277fba1eb6059858ea41 (diff)
downloadkazbek-20f3d98d637c5992c53f19590c15fa923f4eedcd.tar.gz
Move katja into a separate repository
Diffstat (limited to 'tests/repository.cpp')
-rw-r--r--tests/repository.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/repository.cpp b/tests/repository.cpp
deleted file mode 100644
index 1f1fb19..0000000
--- a/tests/repository.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-#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);
-}