Sha256: 4a7e46edfcffe22dfe474c85ae6f2e0ae78bbb46b9c49f3ae823eb6ea950ed97
Contents?: true
Size: 419 Bytes
Versions: 15
Compression:
Stored size: 419 Bytes
Contents
# encoding: ASCII-8BIT require 'helper' require 'wsdl/parser' module WSDL class TestWSDL < Test::Unit::TestCase def setup @file = File.join(File.dirname(File.expand_path(__FILE__)), 'emptycomplextype.wsdl') end def test_wsdl @wsdl = WSDL::Parser.new.parse(File.open(@file) { |f| f.read }) assert(/\{urn:jp.gr.jin.rrr.example.emptycomplextype\}emptycomplextype/ =~ @wsdl.inspect) end end end
Version data entries
15 entries across 15 versions & 9 rubygems