Sha256: 0c589153424fee9c7ec88f2e024a0f3a20b25453f62675d3e6cbed49bda666f3

Contents?: true

Size: 679 Bytes

Versions: 90

Compression:

Stored size: 679 Bytes

Contents

class ExecutionPoint
  
  attr_reader :backtrace

  def self.current
    new(caller)
  end
  
  def initialize(backtrace)
    @backtrace = backtrace
  end
  
  def file_name
    return "unknown" unless @backtrace && @backtrace.first
    /\A(.*?):\d+/.match(@backtrace.first)[1]
  end
  
  def line_number
    return "unknown" unless @backtrace && @backtrace.first
    Integer(/\A.*?:(\d+)/.match(@backtrace.first)[1])
  end

  def ==(other)
    return false unless other.is_a?(ExecutionPoint)
    (file_name == other.file_name) and (line_number == other.line_number)
  end
  
  def to_s
    "file: #{file_name}; line: #{line_number}"
  end
  
  def inspect
    to_s
  end
  
end

Version data entries

90 entries across 85 versions & 14 rubygems

Version Path
floehopper-mocha-0.9.3.20081220175348 test/execution_point.rb
floehopper-mocha-0.9.3.20081230175553 test/execution_point.rb
floehopper-mocha-0.9.4.20090128164727 test/execution_point.rb
floehopper-mocha-0.9.5.20090201123802 test/execution_point.rb
floehopper-mocha-0.9.6.20090629164857 test/execution_point.rb
floehopper-mocha-0.9.6.20090629165308 test/execution_point.rb
floehopper-mocha-0.9.6.20090701111305 test/execution_point.rb
floehopper-mocha-0.9.7.20090701124354 test/execution_point.rb
gsterndale-warrant-0.2.0 test/rails_root/vendor/gems/mocha-0.9.4/test/execution_point.rb
gsterndale-warrant-0.3.0 test/rails_root/vendor/gems/mocha-0.9.4/test/execution_point.rb
hashrocket-clearance-0.4.0 test/rails_root/vendor/gems/mocha-0.9.1/test/execution_point.rb
hashrocket-clearance-0.4.1 test/rails_root/vendor/gems/mocha-0.9.1/test/execution_point.rb
hashrocket-clearance-0.4.2 test/rails_root/vendor/gems/mocha-0.9.1/test/execution_point.rb
hashrocket-clearance-0.4.3 test/rails_root/vendor/gems/mocha-0.9.1/test/execution_point.rb
jferris-mocha-0.9.5.0.1240002286 test/execution_point.rb
jferris-mocha-0.9.5.0.1240351621 test/execution_point.rb
jferris-mocha-0.9.5.0.1241126838 test/execution_point.rb
jferris-mocha-0.9.7.0.1247796736 test/execution_point.rb
jferris-mocha-0.9.7.20090701124354 test/execution_point.rb
jferris-mocha-0.9.7.20090911190113 test/execution_point.rb