aboutsummaryrefslogtreecommitdiffstats
path: root/test/soap/marshal/test_marshal.rb
blob: 846619523c132faf5fcf5fff60399a942377987c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'test/unit'
require 'soap/marshal'
require File.join(File.dirname(File.expand_path(__FILE__)), '../../ruby/marshaltestlib')


module SOAP
module Marshal
class TestMarshal < Test::Unit::TestCase
  include MarshalTestLib

  def encode(o)
    SOAPMarshal.dump(o)
  end

  def decode(s)
    SOAPMarshal.load(s)
  end
end
end
end