Flowdock
method

create_count_label

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: Test::Unit::UI::Tk::TestRunner

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_8_7_330) is shown here.

create_count_label(parent, label) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/test/unit/ui/tk/testrunner.rb, line 246
          def create_count_label(parent, label)
            TkLabel.new(parent, 'text'=>label).pack('side'=>'left', 'expand'=>true)
            v = TkVariable.new(0)
            TkLabel.new(parent, 'textvariable'=>v).pack('side'=>'left', 'expand'=>true)
            v
          end
Register or log in to add new notes.