aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/libutil
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/libutil')
-rw-r--r--tests/unit/libutil/tests.cc30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/unit/libutil/tests.cc b/tests/unit/libutil/tests.cc
index f3c1e8248..f55c56548 100644
--- a/tests/unit/libutil/tests.cc
+++ b/tests/unit/libutil/tests.cc
@@ -235,36 +235,6 @@ namespace nix {
}
/* ----------------------------------------------------------------------------
- * hasPrefix
- * --------------------------------------------------------------------------*/
-
- TEST(hasPrefix, emptyStringHasNoPrefix) {
- ASSERT_FALSE(hasPrefix("", "foo"));
- }
-
- TEST(hasPrefix, emptyStringIsAlwaysPrefix) {
- ASSERT_TRUE(hasPrefix("foo", ""));
- ASSERT_TRUE(hasPrefix("jshjkfhsadf", ""));
- }
-
- TEST(hasPrefix, trivialCase) {
- ASSERT_TRUE(hasPrefix("foobar", "foo"));
- }
-
- /* ----------------------------------------------------------------------------
- * hasSuffix
- * --------------------------------------------------------------------------*/
-
- TEST(hasSuffix, emptyStringHasNoSuffix) {
- ASSERT_FALSE(hasSuffix("", "foo"));
- }
-
- TEST(hasSuffix, trivialCase) {
- ASSERT_TRUE(hasSuffix("foo", "foo"));
- ASSERT_TRUE(hasSuffix("foobar", "bar"));
- }
-
- /* ----------------------------------------------------------------------------
* base64Encode
* --------------------------------------------------------------------------*/