1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-28 17:51:15 +02:00

parseStorePath: Support leading period

This commit is contained in:
Robert Hensing 2024-01-27 11:19:05 +01:00 committed by Théophane Hufschmitt
parent 379274fd7f
commit 752e8e4acd
2 changed files with 11 additions and 0 deletions

View file

@ -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