collectiveidea/json_spec

View on GitHub
lib/json_spec/messages.rb

Summary

Maintainability
A
0 mins
Test Coverage
module JsonSpec
  module Messages
    def message_with_path(message)
      message << %( at path "#{@path}") if @path
      message
    end
  end
end