Bug #4174
closed1F1E on rdoc tests
Description
=begin
During `make test-all', rdoc tests fails as follows:
-
Failure:
test_inline_source_is_enabled_by_default(Rake::TestRDocTask) [/home/yanagi/ruby/test/rake/test_rdoc_task.rb:65]:
Failed assertion, no message given. -
Error:
test_inline_source_option_can_be_disabled(Rake::TestRDocTask):
NoMethodError: undefined methodinline_source=' for #<RDoc::Task:0xacc2fe0> /home/yanagi/ruby/test/rake/test_rdoc_task.rb:81:in
test_inline_source_option_can_be_disabled'
=end
Updated by naruse (Yui NARUSE) almost 14 years ago
- Status changed from Open to Assigned
- Assignee set to drbrain (Eric Hodel)
- Target version set to 1.9.3
=begin
=end
Updated by drbrain (Eric Hodel) almost 14 years ago
=begin
On Dec 20, 2010, at 3:57, Kouhei Yanagita redmine@ruby-lang.org wrote:
Bug #4174: 1F1E on rdoc tests
http://redmine.ruby-lang.org/issues/show/4174Author: Kouhei Yanagita
Status: Open, Priority: Normal
ruby -v: ruby 1.9.3dev (2010-12-20 trunk 30253) [i686-linux]During `make test-all', rdoc tests fails as follows:
Failure:
test_inline_source_is_enabled_by_default(Rake::TestRDocTask) [/home/yanagi/ruby/test/rake/test_rdoc_task.rb:65]:
Failed assertion, no message given.Error:
test_inline_source_option_can_be_disabled(Rake::TestRDocTask):
NoMethodError: undefined methodinline_source=' for #<RDoc::Task:0xacc2fe0> /home/yanagi/ruby/test/rake/test_rdoc_task.rb:81:in
test_inline_source_option_can_be_disabled'
I could not rub test-all when I committed due to a drbssl/RSA error.
Jim agreed to remove Rake::RDocTask from rake long ago but has not yet done so. This is the source of the problem.
I have sent him a pull request but he has not yet responded:
https://github.com/jimweirich/rake/pull/13
I will try sending a postcard too.
=end
Updated by naruse (Yui NARUSE) almost 14 years ago
=begin
2010/12/21 Eric Hodel drbrain@segment7.net:
I could not rub test-all when I committed due to a drbssl/RSA error.
Skip that tests like following:
make RUBYOPT=-w TESTS='-v -n"/\A(?!test_getpty_nonexistent)/"'
TMPDIR=/tmp/test-all test-all|&tee t.log
--
NARUSE, Yui
naruse@airemix.jp
=end
Updated by drbrain (Eric Hodel) almost 14 years ago
=begin
On Dec 20, 2010, at 16:14, NARUSE, Yui wrote:
2010/12/21 Eric Hodel drbrain@segment7.net:
I could not rub test-all when I committed due to a drbssl/RSA error.
Skip that tests like following:
make RUBYOPT=-w TESTS='-v -n"/\A(?!test_getpty_nonexistent)/"'
TMPDIR=/tmp/test-all test-all|&tee t.log
Ah! I will be more clever with my regexp next time then, thank you!
=end
Updated by drbrain (Eric Hodel) almost 14 years ago
- Status changed from Assigned to Closed
=begin
I asked Jim if it was ok to replace Rake::RDocTask with RDoc::Task and he approved.
I have updated to RDoc 3.1 and removed RDoc::Task.
=end
Updated by drbrain (Eric Hodel) almost 14 years ago
=begin
Sorry, I have removed lib/rake/rdoctask's implementation and replaced it with a warning and a require 'rdoc/task'. rdoc/task contains a backwards-compatible implementation.
=end