class WsdlMapperTesting::FakeD10r

Public Class Methods

new() click to toggle source
# File lib/wsdl_mapper_testing/fake_d10r.rb, line 3
def initialize
  @outputs = {}
end

Public Instance Methods

from_xml(xml) click to toggle source
# File lib/wsdl_mapper_testing/fake_d10r.rb, line 11
def from_xml(xml)
  @outputs.fetch xml
end
output_for_xml(xml, output) click to toggle source
# File lib/wsdl_mapper_testing/fake_d10r.rb, line 7
def output_for_xml(xml, output)
  @outputs[xml] = output
end