summaryrefslogtreecommitdiff
path: root/test/soap/marshal/test_struct.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/soap/marshal/test_struct.rb')
-rw-r--r--test/soap/marshal/test_struct.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/soap/marshal/test_struct.rb b/test/soap/marshal/test_struct.rb
index 6596fb7a33..d3c0a4e5e8 100644
--- a/test/soap/marshal/test_struct.rb
+++ b/test/soap/marshal/test_struct.rb
@@ -1,6 +1,11 @@
require 'test/unit'
require 'soap/marshal'
+
+module SOAP
+module Marshal
+
+
Foo1 = Struct.new("Foo1", :m)
Foo2 = Struct.new(:m)
class Foo3
@@ -36,3 +41,7 @@ class TestStruct < Test::Unit::TestCase
SOAP::Marshal.unmarshal(SOAP::Marshal.marshal(obj))
end
end
+
+
+end
+end