blob: 8973da1bbfdd441989da6900351966ce64ac7eaa [file] [log] [blame]
# client.rb
require 'test/unit'
require File.join(File.dirname(__FILE__),'_loadpath')
require 'openwsman'
require '_client'
class WsmanTest < Test::Unit::TestCase
def test_client
begin
client = Client.open( "unknown" )
rescue
end
assert !client
end
end