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
@pattern = 'test/test*.rb' if @pattern.nil? && @test_files.nil?
When I run this I get:
...
.../core_ext/kernel_require.rb:54:in `require': cannot load such file -- test/test*.rb (LoadError)
...
Command failed with status (1): [ruby -I"lib" -e "ARGV.each{|f| require f}" "test/test*.rb" ]
Notice the pattern in the command has quotes around it, preventing shell expansion. This is because that last argument is over-quoted by file_list_string:
Given:
By default
rake test
wants to run with a pattern:When I run this I get:
Notice the pattern in the command has quotes around it, preventing shell expansion. This is because that last argument is over-quoted by
file_list_string
:The text was updated successfully, but these errors were encountered: