module EasyJSONMatcher::ContentWrapper

Attributes

content[R]

Public Instance Methods

[](key) click to toggle source
# File lib/easy_json_matcher/content_wrapper.rb, line 6
def [](key)
  content[key.to_s]
end
keys() click to toggle source
# File lib/easy_json_matcher/content_wrapper.rb, line 10
def keys
  content.keys.map(&:to_sym)
end