Sha256: c36da7bbddb6cd31786e8ae77e34102adaa8b7fe9d0d4eaf1fa9725a55c0c801

Contents?: true

Size: 1.44 KB

Versions: 1

Compression:

Stored size: 1.44 KB

Contents

# Copyright (C) 2003-2007 Kouichirou Eto, All rights reserved.
# License: Ruby License

require 'qp/version'

module QP #:nodoc:
  def caller_msg(ca) #:nodoc:
    file, linenum, msg = ca.first.split(/:([0-9]+):/)
    msg = $1 if /\Ain \`(.+)\'\z/ =~ msg
    File.basename(file)+':'+linenum.to_s+':'+msg.to_s
  end

  def ar_inspect(ar) #:nodoc:
    '['+ar.map {|arg| arg.inspect }.join(', ')+']'
  end

  def runtime #:nodoc:
    $__qp_t__ = Time.now unless defined? $__qp_t__
    sprintf('%.1f', Time.now - $__qp_t__)
  end

  def qp(ca, *args)
    QP.caller_msg(ca)+"\t"+QP.ar_inspect(args)
  end

  def tp(ca, *args)
    QP.runtime+':'+QP.qp(ca, *args)
  end

  module_function :caller_msg, :ar_inspect, :runtime, :qp, :tp
end

def qp(*args)
  $stdout.print QP.qp(caller(1), *args)+"\n"
end

def tp(*args)
  print QP.tp(caller(1), *args)+"\n"
end

if $0 == __FILE__
  $LOAD_PATH.unshift '..' unless $LOAD_PATH.include? '..'
  $__test_qp__ = true
end

if defined?($__test_qp__) && $__test_qp__
  require 'test/unit'
  require 'test/unit/ui/console/testrunner'

  class TestQP < Test::Unit::TestCase #:nodoc:
    def test_all
      #assert_match(/testcase.rb:\d\d:_*send_*/, QP.caller_msg(caller(1)))
      assert_equal("[1, \"a\"]", QP.ar_inspect([1, 'a']))
      assert_match(/\d+\.\d/, QP.runtime)
      #assert_match(/\d+\.\d:testcase.rb:\d\d:_*send_*	\[1, 'a'\]/, QP.tp(caller(1), 1, 'a'))
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cutep-0.0.3 lib/qp.rb