class JsonSpec::MissingPath
Attributes
path[R]
Public Class Methods
new(path)
click to toggle source
# File lib/json_spec/errors.rb, line 8 def initialize(path) @path = path end
Public Instance Methods
to_s()
click to toggle source
# File lib/json_spec/errors.rb, line 12 def to_s %(Missing JSON path "#{path}") end