lib/api_matchers.rb in api_matchers-0.2.0 vs lib/api_matchers.rb in api_matchers-0.3.0
- old
+ new
@@ -28,17 +28,19 @@
# Response Body Matchers
#
module ResponseBody
autoload :Base, 'api_matchers/response_body/base'
autoload :HaveJsonNode, 'api_matchers/response_body/have_json_node'
+ autoload :HaveJson, 'api_matchers/response_body/have_json'
autoload :HaveXmlNode, 'api_matchers/response_body/have_xml_node'
autoload :HaveNode, 'api_matchers/response_body/have_node'
end
# Core
#
module Core
autoload :FindInJSON, 'api_matchers/core/find_in_json'
+ autoload :Parser, 'api_matchers/core/parser'
autoload :Setup, 'api_matchers/core/setup'
autoload :Exceptions, 'api_matchers/core/exceptions'
end
include ::APIMatchers::Core::Exceptions