class WsdlMapperTesting::FakeS8r

Public Class Methods

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

Public Instance Methods

to_xml(input) click to toggle source
# File lib/wsdl_mapper_testing/fake_s8r.rb, line 11
def to_xml(input)
  @xmls.fetch input
end
xml_for_input(input, xml) click to toggle source
# File lib/wsdl_mapper_testing/fake_s8r.rb, line 7
def xml_for_input(input, xml)
  @xmls[input] = xml
end