We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.
..
1 parent 683008a commit d707b6fCopy full SHA for d707b6f
gix-validate/tests/path/mod.rs
@@ -253,6 +253,10 @@ mod component {
253
mktest!(con_with_extension, b"CON.abc", Error::WindowsReservedName);
254
mktest!(con_with_middle, b"CON.tar.xz", Error::WindowsReservedName);
255
mktest!(con_mixed_with_middle, b"coN.tar.xz ", Error::WindowsReservedName);
256
+ mktest!(dot_dot, b"..", Error::WindowsIllegalCharacter);
257
+ mktest!(dot_dot_no_opts, b"..", Error::WindowsIllegalCharacter, NO_OPTS);
258
+ mktest!(single_dot, b".", Error::WindowsIllegalCharacter);
259
+ mktest!(single_dot_no_opts, b".", Error::WindowsIllegalCharacter, NO_OPTS);
260
mktest!(
261
conout_mixed_with_extension,
262
b"ConOut$ .xyz",
0 commit comments