summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-27 00:39:46 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-27 00:39:46 +0000
commitb0ba0595fa162b1a63dc497ef1bf1c81f5d06b1c (patch)
tree401ab40a0b12979c13bb2c742a2a5be6f1576cb8 /spec
parent51196cf518b1ee5b368cf8a835fc2789a7ca05cb (diff)
to debug https://ci.appveyor.com/project/ruby/ruby/builds/20566898/job/hda29416yal9h6hn use binary search
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66011 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec')
-rw-r--r--spec/ruby/core/main/using_spec.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/ruby/core/main/using_spec.rb b/spec/ruby/core/main/using_spec.rb
index 1fb812f5cc..58cc8b0181 100644
--- a/spec/ruby/core/main/using_spec.rb
+++ b/spec/ruby/core/main/using_spec.rb
@@ -3,6 +3,7 @@ require_relative 'fixtures/classes'
describe "main.using" do
it "requires one Module argument" do
+=begin
lambda do
eval('using', TOPLEVEL_BINDING)
end.should raise_error(ArgumentError)
@@ -10,6 +11,7 @@ describe "main.using" do
lambda do
eval('using "foo"', TOPLEVEL_BINDING)
end.should raise_error(TypeError)
+=end
end
it "uses refinements from the given module only in the target file" do