diff options
author | Hiroshi SHIBATA <[email protected]> | 2021-05-31 14:56:50 +0900 |
---|---|---|
committer | git <[email protected]> | 2021-08-30 12:39:23 +0900 |
commit | 598f4f42196a51d922f539fa885173c39312b427 (patch) | |
tree | 396b3c30e18c7ef2d015fb6eb4895a82b87fe33e /test/irb/test_workspace.rb | |
parent | be9cc6c75865b24652d001f0f34f2e63180418c6 (diff) |
[ruby/irb] Use pend instead of skip
https://github.com/ruby/irb/commit/f441ce35bf
Diffstat (limited to 'test/irb/test_workspace.rb')
-rw-r--r-- | test/irb/test_workspace.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/irb/test_workspace.rb b/test/irb/test_workspace.rb index f028fc3aa2..a39bea2050 100644 --- a/test/irb/test_workspace.rb +++ b/test/irb/test_workspace.rb @@ -39,8 +39,8 @@ module TestIRB end def test_code_around_binding_with_existing_unreadable_file - skip 'chmod cannot make file unreadable on windows' if windows? - skip 'skipped in root privilege' if Process.uid == 0 + pend 'chmod cannot make file unreadable on windows' if windows? + pend 'skipped in root privilege' if Process.uid == 0 Tempfile.create('irb') do |f| code = "IRB::WorkSpace.new(binding)\n" |