Class: Assert::Suite::ContextInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/assert/suite.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.



135
136
137
138
139
# File 'lib/assert/suite.rb', line 135

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

Instance Attribute Details

#called_fromObject (readonly)

Returns the value of attribute called_from.



133
134
135
# File 'lib/assert/suite.rb', line 133

def called_from
  @called_from
end

#fileObject (readonly)

Returns the value of attribute file.



133
134
135
# File 'lib/assert/suite.rb', line 133

def file
  @file
end

#klassObject (readonly)

Returns the value of attribute klass.



133
134
135
# File 'lib/assert/suite.rb', line 133

def klass
  @klass
end