Sha256: 50344cacc3f0c85c6b9ed46e0cf8594afa2e785dfa6ca083e94cf11e002ba2a1
Contents?: true
Size: 717 Bytes
Versions: 4
Compression:
Stored size: 717 Bytes
Contents
# # test/unit/bio/io/test_soapwsdl.rb - Unit test for SOAP/WSDL # # Copytight:: Copyright (C) 2005 Mitsuteru Nakao <n@bioruby.org> # License:: The Ruby License # # $Id: test_soapwsdl.rb,v 1.3 2007/04/05 23:35:43 trevor Exp $ # require 'pathname' libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 4, 'lib')).cleanpath.to_s $:.unshift(libpath) unless $:.include?(libpath) require 'test/unit' require 'bio/io/soapwsdl' module Bio class TestSOAPWSDL < Test::Unit::TestCase def setup @obj = Bio::SOAPWSDL end def test_methods methods = ['list_methods','wsdl', 'wsdl=', 'log', 'log='] assert_equal(methods.sort, (@obj.instance_methods - Object.methods).sort) end end end
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
jandot-bio-1.2.1 | test/unit/bio/io/test_soapwsdl.rb |
bio-1.2.1 | test/unit/bio/io/test_soapwsdl.rb |
bio-1.2.0 | test/unit/bio/io/test_soapwsdl.rb |
bio-1.1.0 | test/unit/bio/io/test_soapwsdl.rb |