Class: ChefSpec::Coverage::ResourceWrapper
- Inherits:
-
Object
- Object
- ChefSpec::Coverage::ResourceWrapper
- Defined in:
- lib/chefspec/coverage.rb
Instance Attribute Summary collapse
-
#resource ⇒ Object
readonly
Returns the value of attribute resource.
Instance Method Summary collapse
-
#initialize(resource = nil) ⇒ ResourceWrapper
constructor
A new instance of ResourceWrapper.
- #source_file ⇒ Object
- #source_line ⇒ Object
- #to_json ⇒ Object
- #to_s ⇒ Object
- #touch! ⇒ Object
- #touched? ⇒ Boolean
Constructor Details
#initialize(resource = nil) ⇒ ResourceWrapper
Returns a new instance of ResourceWrapper.
198 199 200 |
# File 'lib/chefspec/coverage.rb', line 198 def initialize(resource = nil) @resource = resource end |
Instance Attribute Details
#resource ⇒ Object (readonly)
Returns the value of attribute resource
196 197 198 |
# File 'lib/chefspec/coverage.rb', line 196 def resource @resource end |
Instance Method Details
#source_file ⇒ Object
215 216 217 218 219 220 221 |
# File 'lib/chefspec/coverage.rb', line 215 def source_file @source_file ||= if @resource.source_line shortname(@resource.source_line.split(':').first) else 'Unknown' end end |
#source_line ⇒ Object
223 224 225 226 227 228 229 |
# File 'lib/chefspec/coverage.rb', line 223 def source_line @source_line ||= if @resource.source_line @resource.source_line.split(':', 2).last.to_i else 'Unknown' end end |
#to_json ⇒ Object
206 207 208 209 210 211 212 213 |
# File 'lib/chefspec/coverage.rb', line 206 def to_json { "source_file" => source_file, "source_line" => source_line, "touched" => touched?, "resource" => to_s }.to_json end |
#to_s ⇒ Object
202 203 204 |
# File 'lib/chefspec/coverage.rb', line 202 def to_s @resource.to_s end |
#touch! ⇒ Object
231 232 233 |
# File 'lib/chefspec/coverage.rb', line 231 def touch! @touched = true end |
#touched? ⇒ Boolean
235 236 237 |
# File 'lib/chefspec/coverage.rb', line 235 def touched? !!@touched end |