* test/fileutils/test_fileutils.rb (check_singleton): fix to use
symbole instead of string. * test/io/nonblock/test_flush.rb: enable tests. * test/xmlrpc/test_webrick_server.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11743 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
970df0d138
commit
a8d47615da
@ -1,3 +1,12 @@
|
|||||||
|
Thu Feb 15 01:50:26 2007 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
|
* test/fileutils/test_fileutils.rb (check_singleton): fix to use
|
||||||
|
symbole instead of string.
|
||||||
|
|
||||||
|
* test/io/nonblock/test_flush.rb: enable tests.
|
||||||
|
|
||||||
|
* test/xmlrpc/test_webrick_server.rb: ditto.
|
||||||
|
|
||||||
Thu Feb 15 01:43:45 2007 Koichi Sasada <ko1@atdot.net>
|
Thu Feb 15 01:43:45 2007 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
* lib/delegate.rb: catch up with class local variable (@_v) spec.
|
* lib/delegate.rb: catch up with class local variable (@_v) spec.
|
||||||
|
@ -77,7 +77,7 @@ class TestFileUtils
|
|||||||
include FileUtils
|
include FileUtils
|
||||||
|
|
||||||
def check_singleton(name)
|
def check_singleton(name)
|
||||||
assert_equal true, ::FileUtils.public_methods.include?(name.to_s)
|
assert_equal true, ::FileUtils.public_methods.include?(name.to_sym)
|
||||||
end
|
end
|
||||||
|
|
||||||
def my_rm_rf(path)
|
def my_rm_rf(path)
|
||||||
|
@ -6,7 +6,6 @@ end
|
|||||||
|
|
||||||
class TestIONonblock < Test::Unit::TestCase
|
class TestIONonblock < Test::Unit::TestCase
|
||||||
def test_flush # [ruby-dev:24985]
|
def test_flush # [ruby-dev:24985]
|
||||||
flunk "YARV doesn't support io/nonblock"
|
|
||||||
r,w = IO.pipe
|
r,w = IO.pipe
|
||||||
w.nonblock = true
|
w.nonblock = true
|
||||||
w.sync = false
|
w.sync = false
|
||||||
|
@ -52,7 +52,6 @@ class Test_Webrick < Test::Unit::TestCase
|
|||||||
|
|
||||||
PORT = 8070
|
PORT = 8070
|
||||||
def test_client_server
|
def test_client_server
|
||||||
assert false, "This tests doesn't work on YARV"
|
|
||||||
# NOTE: I don't enable SSL testing as this hangs
|
# NOTE: I don't enable SSL testing as this hangs
|
||||||
[false].each do |use_ssl|
|
[false].each do |use_ssl|
|
||||||
begin
|
begin
|
||||||
|
Loading…
x
Reference in New Issue
Block a user