summaryrefslogtreecommitdiff
path: root/test/xsd/test_xmlschemaparser.rb
blob: b3621205406ef0ef96bf5ed1d1e3a47cebef7ae2 (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/xmlSchema/parser'


module XSD


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

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

TestXMLSchemaParser.setup(File.join(File.dirname(__FILE__), 'xmlschema.xml'))


end