[#41531] [Bug #3385] ext/dbm: accept various version of db — Takahiro Kambe <redmine@...>

Bug #3385: ext/dbm: accept various version of db

10 messages 2010/06/03

[#41600] 質問・提案:cgi.rbの後継となるライブラリについて — Dice <tetradice@...>

Diceです。cgi.rbの後継ライブラリについて質問させてください。

16 messages 2010/06/13
[#41606] Re: 質問・提案:cgi.rbの後継となるライブラリについて — Fujioka <fuj@...> 2010/06/14

藤岡です。

[#41607] Re: 質問・提案:cgi.rbの後継となるライブラリについて — KAKUTANI Shintaro <shintaro.kakutani@...> 2010/06/14

かくたにです。

[#41616] Re: 質問・提案:cgi.rbの後継となるライブラリについて — Dice <tetradice@...> 2010/06/15

藤岡さん、かくたにさん、返信ありがとうございます。

[#41617] Re: 質問・提案:cgi.rbの後継となるライブラリについて — Fujioka <fuj@...> 2010/06/16

藤岡です。

[#41656] Re: 質問・提案:cgi.rbの後継となるライブラリについて — Dice <tetradice@...> 2010/06/20

Diceです。藤岡さん、返信ありがとうございます。

[#41623] [Feature:trunk] argument delegation — Nobuyoshi Nakada <nobu@...>

なかだです。

23 messages 2010/06/16
[#41625] Re: [Feature:trunk] argument delegation — Yusuke ENDOH <mame@...> 2010/06/16

遠藤です。

[#41627] Re: [Feature:trunk] argument delegation — Yukihiro Matsumoto <matz@...> 2010/06/16

まつもと ゆきひろです

[#41702] WIN32OLE_METHOD offset_vtbl — kuwamoto shintaro <beuniv@...>

こんばんわ

16 messages 2010/06/23
[#41712] Re: WIN32OLE_METHOD offset_vtbl — Masaki Suketa <masaki.suketa@...> 2010/06/24

助田です。

[ruby-dev:41501] Re: [Feature #3203] LazySweepGC patch

From: Tanaka Akira <akr@...>
Date: 2010-06-01 15:09:13 UTC
List: ruby-dev #41501
2010年6月1日10:55 KISHIMOTO, Makoto <ksmakoto@dd.iij4u.or.jp>:
>
>  1) Error:
> test_cgi_core_htmltype(CGICoreTest):
> TypeError: can't convert NoMethodError into String
>    /export/home/ksmakoto/ruby-trunk/test/cgi/test_cgi_core.rb:339:in `test_cgi_core_htmltype'
>
> 9 tests, 75 assertions, 0 failures, 1 errors, 0 skips
>
> Test run options: --seed 49582

これ、いろんなところで出ますねぇ。

現時点で、以下が観測できました。

TypeError: can't convert Array into String
  test/rake/test_fileutils.rb:130:in `test_fileutils_method
TypeError: can't convert Array into String
  test/ruby/test_basicinstructions.rb:208:in `set_lvar_in_another_method'
TypeError: can't convert Array into String
  test/test_delegate.rb:111:in `test_instance_method'
TypeError: can't convert Array into String
  test/test_syslog.rb:13:in `test_new'
TypeError: can't convert NoMethodError into String
  test/cgi/test_cgi_core.rb:339:in `test_cgi_core_htmltype'
TypeError: can't convert NoMethodError into String
  test/date/test_date_arith.rb:87:in `test_prev'
TypeError: can't convert NoMethodError into String
  test/rake/test_fileutils.rb:130:in `test_fileutils_methods_dont_leak'
TypeError: can't convert NoMethodError into String
  test/ruby/test_alias.rb:44:in `test_alias'
TypeError: can't convert NoMethodError into String
  test/ruby/test_clone.rb:24:in `test_clone'
TypeError: can't convert NoMethodError into String
  test/ruby/test_complex.rb:1070:in `test_ruby19'
TypeError: can't convert NoMethodError into String
  test/ruby/test_complexrational.rb:104:in `test_comp_srat'
TypeError: can't convert NoMethodError into String
  test/ruby/test_exception.rb:312:in `test_nomethoderror'
TypeError: can't convert NoMethodError into String
  test/test_delegate.rb:111:in `test_instance_method'
TypeError: can't convert NoMethodError into String
  test/test_delegate.rb:124:in `test_private_method'

それぞれどんなコードかと思って調べると...

test/rake/test_fileutils.rb:130
    assert_raise(NoMethodError) { obj.copy } # from FileUtils
test/ruby/test_basicinstructions.rb:208
    assert_raise(NameError) { a }
test/test_delegate.rb:111
    assert_raise(NoMethodError, '[ruby-dev:40314]#3') {m.call}
test/test_syslog.rb:13
    assert_raises(NoMethodError) {
test/cgi/test_cgi_core.rb:339
    assert_raise(NoMethodError) do cgi.doctype end
test/date/test_date_arith.rb:87
    assert_raise(NoMethodError) do
test/rake/test_fileutils.rb:130
    assert_raise(NoMethodError) { obj.copy } # from FileUtils
test/ruby/test_alias.rb:44
    assert_raise(NoMethodError) { x.foo }
test/ruby/test_clone.rb:24
    assert_raise(NoMethodError) {foo.test2}
test/ruby/test_complex.rb:1070
    assert_raise(NoMethodError){ Complex.new(1) }
test/ruby/test_complexrational.rb:104
    assert_raise(NoMethodError){c <=> 2}
test/ruby/test_exception.rb:312
    e = assert_raise(NoMethodError) {str.__send__(id)}
test/test_delegate.rb:111
    assert_raise(NoMethodError, '[ruby-dev:40314]#3') {m.call}
test/test_delegate.rb:124
    assert_raise(NoMethodError) {foo.delegate_test_private}

みごとにすべて assert_raise (と assert_raises) ですな。
-- 
[田中 哲][たなか あきら][Tanaka Akira]

In This Thread

Prev Next