From d10c5c980c18216db3bb9fb1137866cfd4f836ec Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Sat, 19 Apr 2025 14:48:02 +0200 Subject: Initial commit --- tests/repository.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tests/repository.cpp (limited to 'tests/repository.cpp') 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 +#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); +} -- cgit v1.2.3