|
1 | 1 | fails:File.fnmatch matches entire strings
|
2 | 2 | fails:File.fnmatch does not match partial strings
|
3 |
| -fails:File.fnmatch does not support { } patterns |
| 3 | +fails:File.fnmatch does not support { } patterns by default |
| 4 | +fails:File.fnmatch supports some { } patterns when File::FNM_EXTGLOB is passed |
| 5 | +fails:File.fnmatch doesn't support some { } patterns even when File::FNM_EXTGLOB is passed |
| 6 | +fails:File.fnmatch doesn't match an extra } when File::FNM_EXTGLOB is passed |
| 7 | +fails:File.fnmatch matches when both FNM_EXTGLOB and FNM_PATHNAME are passed |
4 | 8 | fails:File.fnmatch matches a single character for each ? character
|
5 | 9 | fails:File.fnmatch matches zero or more characters for each * character
|
6 | 10 | fails:File.fnmatch matches ranges of characters using bracket expresions (e.g. [a-z])
|
@@ -29,7 +33,11 @@ fails:File.fnmatch raises a TypeError if the third argument is not an Integer
|
29 | 33 | fails:File.fnmatch does not raise a TypeError if the third argument can be coerced to an Integer
|
30 | 34 | fails:File.fnmatch? matches entire strings
|
31 | 35 | fails:File.fnmatch? does not match partial strings
|
32 |
| -fails:File.fnmatch? does not support { } patterns |
| 36 | +fails:File.fnmatch? does not support { } patterns by default |
| 37 | +fails:File.fnmatch? supports some { } patterns when File::FNM_EXTGLOB is passed |
| 38 | +fails:File.fnmatch? doesn't support some { } patterns even when File::FNM_EXTGLOB is passed |
| 39 | +fails:File.fnmatch? doesn't match an extra } when File::FNM_EXTGLOB is passed |
| 40 | +fails:File.fnmatch? matches when both FNM_EXTGLOB and FNM_PATHNAME are passed |
33 | 41 | fails:File.fnmatch? matches a single character for each ? character
|
34 | 42 | fails:File.fnmatch? matches zero or more characters for each * character
|
35 | 43 | fails:File.fnmatch? matches ranges of characters using bracket expresions (e.g. [a-z])
|
|
0 commit comments