You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert_output "Error: either specify --all-match or --any-match; cannot specify both""$output""Should fail with correct error when using mutually exclusive options"
42
42
43
43
# [Test] Files with spaces and special characters
44
-
mkdir -p "folder with spaces/nested\!\@\#\$folder"
45
-
echo"test">"folder with spaces/file with spaces.txt"
46
-
echo"test">"folder with spaces/nested\!\@\#\$folder/file_with_\!\@\#.txt"
44
+
mkdir -p 'folder with spaces/nested!\@*#$folder'
45
+
echo"test">'folder with spaces/file with spaces.txt'
46
+
echo"test">'folder with spaces/nested!\@*#$folder/file_with_!@*#$chars.txt'
47
47
git add .
48
48
git commit -m "Add files with special characters"
49
49
50
50
result=$(pr_changed_files)
51
51
assert_output "true""$result""Should handle files with spaces and special characters"
52
52
53
53
# [Test] Pattern matching with spaces and special characters
0 commit comments