Actions
Bug #897
closedKenel#describe should be private in minitest/spec
Description
=begin
I think Kernel#describe should be private.
code:
OK¶
describe 'aaa' do
do_something
end
NG (I think that this code should raise an exception)¶
99.describe 'bbb' do
do_something
end
patch:
Index: lib/minitest/spec.rb¶
--- lib/minitest/spec.rb (revision 20785)
+++ lib/minitest/spec.rb (working copy)
@@ -54,6 +54,7 @@
end
module Kernel
- private
def describe desc, &block
cls = Class.new(MiniTest::Spec)
Object.const_set desc.to_s.split(/\W+/).map { |s| s.capitalize }.join, cls
=end
Updated by yugui (Yuki Sonoda) almost 16 years ago
- Due date set to 12/24/2008
- Target version set to 1.9.1 Release Candidate
=begin
=end
Updated by zenspider (Ryan Davis) almost 16 years ago
- Status changed from Open to Closed
=begin
=end
Actions
Like0
Like0Like0