[Documentation] Runtime testing using filename
raosush opened this issue · 2 comments
raosush commented
Description
- RBS does not support filename based runtime testing using CLI command
rbs test
Explanation
- RBS uses Open3.capture3 to run a command for executing runtime tests.
- If a filename is passed as an argument to
rbs test
command,Open3.capture3
executes the filename as a command, due to which aPermission denied error
is thrown.
- This error is because a filename cannot be executed as a command, using
Open3.capture3
, which throws permission denied error.
soutaro commented
How about $ rbs test ruby test.rb
?