summaryrefslogtreecommitdiff
path: root/test/wsdl/test_emptycomplextype.rb
blob: fffc8c85ec451cf818a73a62051855d4af8d12f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'test/unit'
require 'wsdl/parser'


module WSDL


class TestWSDL < Test::Unit::TestCase
  def self.setup(filename)
    @@filename = filename
  end

  def test_wsdl
    @wsdl = WSDL::Parser.new.parse(File.open(@@filename).read)
  end
end

TestWSDL.setup(File.join(File.dirname(__FILE__), 'emptycomplextype.wsdl'))


end