mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
4 changed files with 10 additions and 3 deletions
|
@ -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>
|
||||
|
||||
* lib/delegate.rb: catch up with class local variable (@_v) spec.
|
||||
|
|
|
@ -77,7 +77,7 @@ class TestFileUtils
|
|||
include FileUtils
|
||||
|
||||
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
|
||||
|
||||
def my_rm_rf(path)
|
||||
|
|
|
@ -6,7 +6,6 @@ end
|
|||
|
||||
class TestIONonblock < Test::Unit::TestCase
|
||||
def test_flush # [ruby-dev:24985]
|
||||
flunk "YARV doesn't support io/nonblock"
|
||||
r,w = IO.pipe
|
||||
w.nonblock = true
|
||||
w.sync = false
|
||||
|
|
|
@ -52,7 +52,6 @@ class Test_Webrick < Test::Unit::TestCase
|
|||
|
||||
PORT = 8070
|
||||
def test_client_server
|
||||
assert false, "This tests doesn't work on YARV"
|
||||
# NOTE: I don't enable SSL testing as this hangs
|
||||
[false].each do |use_ssl|
|
||||
begin
|
||||
|
|
Loading…
Add table
Reference in a new issue