aboutsummaryrefslogtreecommitdiffstats
path: root/test/irb/test_workspace.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/irb/test_workspace.rb')
-rw-r--r--test/irb/test_workspace.rb18
1 files changed, 10 insertions, 8 deletions
diff --git a/test/irb/test_workspace.rb b/test/irb/test_workspace.rb
index 970dc7fd14..d67b9f6713 100644
--- a/test/irb/test_workspace.rb
+++ b/test/irb/test_workspace.rb
@@ -32,16 +32,18 @@ module TestIRB
end
end
- def test_code_around_binding_with_existing_unreadable_file
- Tempfile.create do |f|
- code = "IRB::WorkSpace.new(binding)\n"
- f.print(code)
- f.close
+ unless /mswin|mingw/ =~ RUBY_PLATFORM
+ def test_code_around_binding_with_existing_unreadable_file
+ Tempfile.create do |f|
+ code = "IRB::WorkSpace.new(binding)\n"
+ f.print(code)
+ f.close
- File.chmod(0, f.path)
+ File.chmod(0, f.path)
- workspace = eval(code, binding, f.path)
- assert_equal(nil, workspace.code_around_binding)
+ workspace = eval(code, binding, f.path)
+ assert_equal(nil, workspace.code_around_binding)
+ end
end
end