Project

General

Profile

Actions

Bug #897

closed

Kenel#describe should be private in minitest/spec

Added by okkez (okkez _) over 15 years ago. Updated almost 13 years ago.

Status:
Closed
ruby -v:
Backport:
[ruby-core:20611]

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
Actions

Also available in: Atom PDF

Like0
Like0Like0