-
-
Notifications
You must be signed in to change notification settings - Fork 925
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Truffle] Untag passing Dir.glob and Dir#element_reference specs.
- 9.4.12.0
- 9.4.11.0
- 9.4.10.0
- 9.4.9.0
- 9.4.8.0
- 9.4.7.0
- 9.4.6.0
- 9.4.5.0
- 9.4.4.0
- 9.4.3.0
- 9.4.2.0
- 9.4.1.0
- 9.4.0.0
- 9.3.15.0
- 9.3.14.0
- 9.3.13.0
- 9.3.12.0
- 9.3.11.0
- 9.3.10.0
- 9.3.9.0
- 9.3.8.0
- 9.3.7.0
- 9.3.6.0
- 9.3.5.0
- 9.3.4.0
- 9.3.3.0
- 9.3.2.0
- 9.3.1.0
- 9.3.0.0
- 9.2.21.0
- 9.2.20.1
- 9.2.20.0
- 9.2.19.0
- 9.2.18.0
- 9.2.17.0
- 9.2.16.0
- 9.2.15.0
- 9.2.14.0
- 9.2.13.0
- 9.2.12.0
- 9.2.11.1
- 9.2.11.0
- 9.2.10.0
- 9.2.9.0
- 9.2.8.0
- 9.2.7.0
- 9.2.6.0
- 9.2.5.0
- 9.2.4.1
- 9.2.4.0
- 9.2.3.0
- 9.2.2.0
- 9.2.1.0
- 9.2.0.0
- 9.1.17.0
- 9.1.16.0
- 9.1.15.0
- 9.1.14.0
- 9.1.13.0
- 9.1.12.0
- 9.1.11.0
- 9.1.10.0
- 9.1.9.0
- 9.1.8.0
- 9.1.7.0
- 9.1.6.0
- 9.1.5.0
- 9.1.4.0
- 9.1.3.0
- 9.1.2.0
- 9.1.1.0
- 9.1.0.0
- 9.0.5.0
- 9.0.4.0
- 9.0.3.0
- 9.0.1.0
- 9.0.0.0
- 9.0.0.0.rc2
- 9.0.0.0.rc1
Showing
2 changed files
with
8 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,4 @@ | ||
fails:Dir.[] raises an Encoding::CompatibilityError if the argument encoding is not compatible with US-ASCII | ||
fails:Dir.[] calls #to_path to convert a pattern | ||
fails:Dir.[] splits the string on \0 if there is only one string given | ||
fails:Dir.[] matches non-dotfiles with '*' | ||
fails:Dir.[] returns empty array when empty pattern provided | ||
fails:Dir.[] matches regexp special + | ||
fails:Dir.[] matches regexp special * | ||
fails:Dir.[] matches regexp special ? | ||
fails:Dir.[] matches regexp special | | ||
fails:Dir.[] matches regexp special ^ | ||
fails:Dir.[] matches regexp special $ | ||
fails:Dir.[] matches regexp special ( | ||
fails:Dir.[] matches regexp special ) | ||
fails:Dir.[] matches regexp special [ | ||
fails:Dir.[] matches regexp special ] | ||
fails:Dir.[] matches regexp special { | ||
fails:Dir.[] matches regexp special } | ||
fails:Dir.[] matches paths with glob patterns | ||
fails:Dir.[] matches dotfiles with '.*' | ||
fails:Dir.[] matches non-dotfiles with '*<non-special characters>' | ||
fails:Dir.[] matches dotfiles with '.*<non-special characters>' | ||
fails:Dir.[] matches files with any ending with '<non-special characters>*' | ||
fails:Dir.[] matches files with any middle with '<non-special characters>*<non-special characters>' | ||
fails:Dir.[] handles directories with globs | ||
fails:Dir.[] matches files with multiple '*' special characters | ||
fails:Dir.[] matches non-dotfiles in the current directory with '**' | ||
fails:Dir.[] matches dotfiles in the current directory with '.**' | ||
fails:Dir.[] recursively matches any nondot subdirectories with '**/' | ||
fails:Dir.[] recursively matches any subdirectories including ./ and ../ with '.**/' | ||
fails:Dir.[] matches a single character except leading '.' with '?' | ||
fails:Dir.[] accepts multiple '?' characters in a pattern | ||
fails:Dir.[] matches any characters in a set with '[<characters>]' | ||
fails:Dir.[] matches any characters in a range with '[<character>-<character>]' | ||
fails:Dir.[] matches any characters except those in a set with '[^<characters>]' | ||
fails:Dir.[] matches any characters except those in a range with '[^<character>-<character]' | ||
fails:Dir.[] matches any one of the strings in a set with '{<string>,<other>,...}' | ||
fails:Dir.[] matches a set '{<string>,<other>,...}' which also uses a glob | ||
fails:Dir.[] accepts string sets with empty strings with {<string>,,<other>} | ||
fails:Dir.[] matches dot or non-dotfiles with '{,.}*' | ||
fails:Dir.[] respects the order of {} expressions, expanding left most first | ||
fails:Dir.[] respects the optional nested {} expressions | ||
fails:Dir.[] matches special characters by escaping with a backslash with '\<character>' | ||
fails:Dir.[] recursively matches directories with '**/<characters>' | ||
fails:Dir.[] preserves the separator between directory components | ||
fails:Dir.[] ignores matching through directories that doen't exist | ||
fails:Dir.[] ignores matching only directories under an nonexistant path | ||
fails:Dir.[] matches UTF-8 paths | ||
fails:Dir.[] calls #to_path to convert multiple patterns | ||
fails:Dir.[] matches multiple recursives | ||
fails:Dir.[] ignores symlinks | ||
fails:Dir.[] returns Strings in the encoding of the pattern | ||
fails:Dir.[] recursively matches directories with '**/<characters>' | ||
fails:Dir.[] recursively matches any nondot subdirectories with '**/' | ||
fails:Dir.[] matches paths with glob patterns |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,7 @@ | ||
fails:Dir.glob raises an Encoding::CompatibilityError if the argument encoding is not compatible with US-ASCII | ||
fails:Dir.glob calls #to_path to convert a pattern | ||
fails:Dir.glob splits the string on \0 if there is only one string given | ||
fails:Dir.glob matches non-dotfiles with '*' | ||
fails:Dir.glob returns empty array when empty pattern provided | ||
fails:Dir.glob matches regexp special + | ||
fails:Dir.glob matches regexp special * | ||
fails:Dir.glob matches regexp special ? | ||
fails:Dir.glob matches regexp special | | ||
fails:Dir.glob matches regexp special ^ | ||
fails:Dir.glob matches regexp special $ | ||
fails:Dir.glob matches regexp special ( | ||
fails:Dir.glob matches regexp special ) | ||
fails:Dir.glob matches regexp special [ | ||
fails:Dir.glob matches regexp special ] | ||
fails:Dir.glob matches regexp special { | ||
fails:Dir.glob matches regexp special } | ||
fails:Dir.glob matches paths with glob patterns | ||
fails:Dir.glob matches dotfiles with '.*' | ||
fails:Dir.glob matches non-dotfiles with '*<non-special characters>' | ||
fails:Dir.glob matches dotfiles with '.*<non-special characters>' | ||
fails:Dir.glob matches files with any ending with '<non-special characters>*' | ||
fails:Dir.glob matches files with any middle with '<non-special characters>*<non-special characters>' | ||
fails:Dir.glob handles directories with globs | ||
fails:Dir.glob matches files with multiple '*' special characters | ||
fails:Dir.glob matches non-dotfiles in the current directory with '**' | ||
fails:Dir.glob matches dotfiles in the current directory with '.**' | ||
fails:Dir.glob recursively matches any nondot subdirectories with '**/' | ||
fails:Dir.glob recursively matches any subdirectories including ./ and ../ with '.**/' | ||
fails:Dir.glob matches a single character except leading '.' with '?' | ||
fails:Dir.glob accepts multiple '?' characters in a pattern | ||
fails:Dir.glob matches any characters in a set with '[<characters>]' | ||
fails:Dir.glob matches any characters in a range with '[<character>-<character>]' | ||
fails:Dir.glob matches any characters except those in a set with '[^<characters>]' | ||
fails:Dir.glob matches any characters except those in a range with '[^<character>-<character]' | ||
fails:Dir.glob matches any one of the strings in a set with '{<string>,<other>,...}' | ||
fails:Dir.glob matches a set '{<string>,<other>,...}' which also uses a glob | ||
fails:Dir.glob accepts string sets with empty strings with {<string>,,<other>} | ||
fails:Dir.glob matches dot or non-dotfiles with '{,.}*' | ||
fails:Dir.glob respects the order of {} expressions, expanding left most first | ||
fails:Dir.glob respects the optional nested {} expressions | ||
fails:Dir.glob matches special characters by escaping with a backslash with '\<character>' | ||
fails:Dir.glob recursively matches directories with '**/<characters>' | ||
fails:Dir.glob preserves the separator between directory components | ||
fails:Dir.glob ignores matching through directories that doen't exist | ||
fails:Dir.glob ignores matching only directories under an nonexistant path | ||
fails:Dir.glob matches UTF-8 paths | ||
fails:Dir.glob matches multiple recursives | ||
fails:Dir.glob ignores symlinks | ||
fails:Dir.glob can take an array of patterns | ||
fails:Dir.glob calls #to_path to convert multiple patterns | ||
fails:Dir.glob matches both dot and non-dotfiles with '*' and option File::FNM_DOTMATCH | ||
fails:Dir.glob matches files with any beginning with '*<non-special characters>' and option File::FNM_DOTMATCH | ||
fails:Dir.glob matches any files in the current directory with '**' and option File::FNM_DOTMATCH | ||
fails:Dir.glob handles infinite directory wildcards | ||
fails:Dir.glob recursively matches any subdirectories except './' or '../' with '**/' from the current directory and option File::FNM_DOTMATCH | ||
fails:Dir.glob recursively matches any subdirectories except './' or '../' with '**/' and option File::FNM_DOTMATCH | ||
fails:Dir.glob matches a list of paths by concatenating their individual results | ||
fails:Dir.glob accepts a block and yields it with each elements | ||
fails:Dir.glob ignores non-dirs when traversing recursively | ||
fails:Dir.glob matches nothing when given an empty list of paths | ||
fails:Dir.glob handles infinite directory wildcards | ||
fails:Dir.glob matches the literal character '\' with option File::FNM_NOESCAPE | ||
fails:Dir.glob returns nil for directories current user has no permission to read | ||
fails:Dir.glob with encoding returns Strings in the encoding of the pattern | ||
fails:Dir.glob matches UTF-8 paths | ||
fails:Dir.glob recursively matches directories with '**/<characters>' | ||
fails:Dir.glob recursively matches any nondot subdirectories with '**/' | ||
fails:Dir.glob matches paths with glob patterns |