Flowdock
method

create_count_label

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: Test::Unit::UI::Tk::TestRunner
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.