File tree Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 1
1
fails:Dir.[] matches paths with glob patterns
2
+ fails:Dir.[] splits the string on \0 if there is only one string given and warns
3
+ fails:Dir.[] matches non-dotfiles with '*'
4
+ fails:Dir.[] matches non-dotfiles in the current directory with '**'
5
+ fails:Dir.[] recursively matches any nondot subdirectories with '**/'
6
+ fails:Dir.[] matches dot or non-dotfiles with '{,.}*'
7
+ fails:Dir.[] :base option passed matches entries only from within the specified directory
8
+ fails:Dir.[] :base option passed accepts both relative and absolute paths
9
+ fails:Dir.[] :base option passed returns [] if specified path does not exist
10
+ fails:Dir.[] :base option passed returns [] if specified path is a file
11
+ fails:Dir.[] :base option passed handles '' as current directory path
12
+ fails:Dir.[] :base option passed handles nil as current directory path
Original file line number Diff line number Diff line change 1
1
fails:Dir.glob matches paths with glob patterns
2
+ fails:Dir.glob splits the string on \0 if there is only one string given and warns
3
+ fails:Dir.glob matches non-dotfiles with '*'
4
+ fails:Dir.glob matches non-dotfiles in the current directory with '**'
5
+ fails:Dir.glob recursively matches any nondot subdirectories with '**/'
6
+ fails:Dir.glob matches dot or non-dotfiles with '{,.}*'
7
+ fails:Dir.glob :base option passed matches entries only from within the specified directory
8
+ fails:Dir.glob :base option passed accepts both relative and absolute paths
9
+ fails:Dir.glob :base option passed returns [] if specified path does not exist
10
+ fails:Dir.glob :base option passed returns [] if specified path is a file
11
+ fails:Dir.glob :base option passed handles '' as current directory path
12
+ fails:Dir.glob :base option passed handles nil as current directory path
Original file line number Diff line number Diff line change @@ -59,8 +59,6 @@ class MSpecScript
59
59
"spec/ruby/core" ,
60
60
61
61
"^spec/ruby/core/tracepoint" ,
62
- "^spec/ruby/core/dir/glob_spec.rb" ,
63
- "^spec/ruby/core/dir/element_reference_spec.rb"
64
62
]
65
63
66
64
set :library , [
You can’t perform that action at this time.
0 commit comments