lib/soaspec/exchange_handlers/exchange_handler.rb in soaspec-0.1.9 vs lib/soaspec/exchange_handlers/exchange_handler.rb in soaspec-0.1.10
- old
+ new
@@ -98,7 +98,13 @@
# @return [Boolean] Whether to remove namespaces in xpath assertion automatically
def strip_namespaces?
false
end
+ # Request of API call. Either intended request or actual request
+ def request(response)
+ return "Request not yet sent Request option is #{@request_option}" unless response
+ 'Specific API handler should implement this'
+ end
+
end
end
\ No newline at end of file