diff options
| author | (no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-07-03 15:38:36 +0000 |
|---|---|---|
| committer | (no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-07-03 15:38:36 +0000 |
| commit | 6133b96d61c705c7aefdf6f577f0da5796bc522d (patch) | |
| tree | ce6b571d063d031d1b5cba3ba7671ca138405a3a /test/soap/wsdlDriver/echo_version.rb | |
| parent | 70105b2706511a6358a32b805fb55f187e942698 (diff) | |
| download | ruby-6133b96d61c705c7aefdf6f577f0da5796bc522d.tar.gz ruby-6133b96d61c705c7aefdf6f577f0da5796bc522d.tar.xz ruby-6133b96d61c705c7aefdf6f577f0da5796bc522d.zip | |
This commit was manufactured by cvs2svn to create branch 'ruby_1_8'.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6568 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/soap/wsdlDriver/echo_version.rb')
| -rw-r--r-- | test/soap/wsdlDriver/echo_version.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/soap/wsdlDriver/echo_version.rb b/test/soap/wsdlDriver/echo_version.rb new file mode 100644 index 000000000..7d76fb758 --- /dev/null +++ b/test/soap/wsdlDriver/echo_version.rb @@ -0,0 +1,20 @@ +# urn:example.com:simpletype-rpc-type +class Version_struct + @@schema_type = "version_struct" + @@schema_ns = "urn:example.com:simpletype-rpc-type" + + attr_accessor :version + attr_accessor :msg + + def initialize(version = nil, msg = nil) + @version = version + @msg = msg + end +end + +# urn:example.com:simpletype-rpc-type +module Versions + C_16 = "1.6" + C_18 = "1.8" + C_19 = "1.9" +end |
