Class: Assert::ContextInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/assert/context_info.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(klass, called_from = nil, first_caller = nil) ⇒ ContextInfo

Returns a new instance of ContextInfo.



7
8
9
10
11
# File 'lib/assert/context_info.rb', line 7

def initialize(klass, called_from = nil, first_caller = nil)
  @called_from = called_from || first_caller
  @klass = klass
  @file = @called_from.to_s.gsub(/\:[0-9]+.*$/, '') if @called_from
end

Instance Attribute Details

#called_fromObject (readonly)

Returns the value of attribute called_from.



5
6
7
# File 'lib/assert/context_info.rb', line 5

def called_from
  @called_from
end

#fileObject (readonly)

Returns the value of attribute file.



5
6
7
# File 'lib/assert/context_info.rb', line 5

def file
  @file
end

#klassObject (readonly)

Returns the value of attribute klass.



5
6
7
# File 'lib/assert/context_info.rb', line 5

def klass
  @klass
end

Instance Method Details

#test_name(name) ⇒ Object



13
14
15
# File 'lib/assert/context_info.rb', line 13

def test_name(name)
  [klass.description.to_s, name.to_s].compact.reject(&:empty?).join(' ')
end