1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/ruby/envutil.rb (Test::Unit::Assertions#assert_in_out_err): new

method.

* test/ruby/test_argf.rb: use assert_in_out_err instead of
  EnvUtil.rubyexec.

* test/ruby/test_module.rb: ditto.

* test/ruby/test_require.rb: ditto.

* test/ruby/test_objectspace.rb: ditto.

* test/ruby/test_object.rb: ditto.

* test/ruby/test_string.rb: ditto.

* test/ruby/test_method.rb: ditto.

* test/ruby/test_variable.rb: ditto.

* test/ruby/test_io.rb: ditto.

* test/ruby/test_rubyoptions.rb: ditto.

* test/ruby/test_exception.rb: ditto.

* test/ruby/test_class.rb: ditto.

* test/ruby/test_thread.rb: ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18082 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2008-07-15 15:26:04 +00:00
parent e74af2cf41
commit eafe85f603
15 changed files with 568 additions and 869 deletions

View file

@ -30,10 +30,6 @@ class TestModule < Test::Unit::TestCase
$VERBOSE = @verbose
end
def ruby(*r, &b)
EnvUtil.rubyexec(*r, &b)
end
def test_LT_0
assert_equal true, String < Object
assert_equal false, Object < String
@ -476,20 +472,17 @@ class TestModule < Test::Unit::TestCase
end
def test_attr
ruby do |w, r, e|
w.puts "$VERBOSE = true"
w.puts "c = Class.new"
w.puts "c.instance_eval do"
w.puts " private"
w.puts " attr_reader :foo"
w.puts "end"
w.puts "o = c.new"
w.puts "o.foo rescue p(:ok)"
w.puts "p(o.instance_eval { foo })"
w.close
assert_equal(":ok\nnil", r.read.chomp)
assert_match(/warning: private attribute\?$/, e.read.chomp)
end
assert_in_out_err([], <<-INPUT, %w(:ok nil), /warning: private attribute\?$/)
$VERBOSE = true
c = Class.new
c.instance_eval do
private
attr_reader :foo
end
o = c.new
o.foo rescue p(:ok)
p(o.instance_eval { foo })
INPUT
c = Class.new
assert_raise(NameError) do
@ -521,13 +514,10 @@ class TestModule < Test::Unit::TestCase
end
%w(object_id __send__ initialize).each do |m|
ruby do |w, r, e|
w.puts "$VERBOSE = false"
w.puts "Class.new.instance_eval { undef_method(:#{m}) }"
w.close
assert_equal("", r.read.chomp)
assert_match(/warning: undefining `#{m}' may cause serious problem$/, e.read.chomp)
end
assert_in_out_err([], <<-INPUT, [], /warning: undefining `#{m}' may cause serious problem$/)
$VERBOSE = false
Class.new.instance_eval { undef_method(:#{m}) }
INPUT
end
end
@ -537,19 +527,16 @@ class TestModule < Test::Unit::TestCase
m.class_eval { alias foo bar }
end
ruby do |w, r, e|
w.puts "$VERBOSE = true"
w.puts "c = Class.new"
w.puts "c.class_eval do"
w.puts " def foo; 1; end"
w.puts " def bar; 2; end"
w.puts "end"
w.puts "c.class_eval { alias foo bar }"
w.puts "p c.new.foo"
w.close
assert_equal("2", r.read.chomp)
assert_match(/warning: discarding old foo$/, e.read.chomp)
end
assert_in_out_err([], <<-INPUT, %w(2), /warning: discarding old foo$/)
$VERBOSE = true
c = Class.new
c.class_eval do
def foo; 1; end
def bar; 2; end
end
c.class_eval { alias foo bar }
p c.new.foo
INPUT
end
def test_mod_constants
@ -618,17 +605,14 @@ class TestModule < Test::Unit::TestCase
end
def test_top_public_private
ruby do |w, r, e|
w.puts "private"
w.puts "def foo; :foo; end"
w.puts "public"
w.puts "def bar; :bar; end"
w.puts "p self.private_methods.grep(/^foo$|^bar$/)"
w.puts "p self.methods.grep(/^foo$|^bar$/)"
w.close
assert_equal("[:foo]\n[:bar]", r.read.chomp)
assert_equal("", e.read.chomp)
end
assert_in_out_err([], <<-INPUT, %w([:foo] [:bar]), [])
private
def foo; :foo; end
public
def bar; :bar; end
p self.private_methods.grep(/^foo$|^bar$/)
p self.methods.grep(/^foo$|^bar$/)
INPUT
end
def test_append_features