diff options
author | Robert Hensing <robert@roberthensing.nl> | 2024-01-27 11:19:05 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-05-02 19:34:03 +0200 |
commit | fae6ae2122b882b77d441b31a0021a6f15f6b03b (patch) | |
tree | f75f10eb673e74d644b273957e29a5f57079114f /tests/unit/libstore | |
parent | 3a058dc4b3f7a8d3f131f2031bf348788ce9206c (diff) |
parseStorePath: Support leading period
(cherry picked from commit b13e6a76b4f289c6db69ffaa7bd35b7e44f2a391)
Change-Id: Ie14be437d87d17248f80e1f009aa2a4311ddede6
Diffstat (limited to 'tests/unit/libstore')
-rw-r--r-- | tests/unit/libstore/path.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unit/libstore/path.cc b/tests/unit/libstore/path.cc index 5485ab8bb..f7b69d5f9 100644 --- a/tests/unit/libstore/path.cc +++ b/tests/unit/libstore/path.cc @@ -62,6 +62,7 @@ TEST_DO_PARSE(underscore, "foo_bar") TEST_DO_PARSE(period, "foo.txt") TEST_DO_PARSE(question_mark, "foo?why") TEST_DO_PARSE(equals_sign, "foo=foo") +TEST_DO_PARSE(dotfile, ".gitignore") #undef TEST_DO_PARSE |