diff options
author | Rebecca Turner <rbt@sent.as> | 2024-03-26 15:39:54 -0700 |
---|---|---|
committer | Rebecca Turner <rbt@sent.as> | 2024-03-26 15:40:05 -0700 |
commit | 8e63eca912a01659cef81b9d6d1cc7cb11edfff5 (patch) | |
tree | de159e9a3c17068d55ab06920d3c587d4e2094c7 /tests/unit/libutil/fmt.cc | |
parent | da22dbc33397c9c6c5d115ce753d5cf11585291e (diff) |
Remove `HintFmt::operator%`
Change-Id: Ibcf1a7848b4b18ec9b0807628ff229079ae7a0fe
Diffstat (limited to 'tests/unit/libutil/fmt.cc')
-rw-r--r-- | tests/unit/libutil/fmt.cc | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/unit/libutil/fmt.cc b/tests/unit/libutil/fmt.cc new file mode 100644 index 000000000..383a688d3 --- /dev/null +++ b/tests/unit/libutil/fmt.cc @@ -0,0 +1,23 @@ +#include "fmt.hh" +#include "ansicolor.hh" + +#include <gtest/gtest.h> + +namespace nix { + +TEST(HintFmt, arg_count) +{ + // Single arg is treated as a literal string. + ASSERT_EQ(HintFmt("%s").str(), "%s"); + + // Other strings format as expected: + ASSERT_EQ(HintFmt("%s", 1).str(), ANSI_MAGENTA "1" ANSI_NORMAL); + ASSERT_EQ(HintFmt("%1%", "hello").str(), ANSI_MAGENTA "hello" ANSI_NORMAL); + + // Argument counts are detected at construction. + ASSERT_THROW(HintFmt("%s %s", 1), boost::io::too_few_args); + + ASSERT_THROW(HintFmt("%s", 1, 2), boost::io::too_many_args); +} + +} |