blob: 2853b1b867d82220a8c1ccb7b2e0862d45c989a2 [file] [log] [blame]
# test ClientOptions class
$:.unshift "../../../build/bindings/ruby"
$:.unshift "../.libs"
require 'test/unit'
require 'openwsman'
class ClientOptionsTest < Test::Unit::TestCase
def test_client_options_constructor
options = Openwsman::ClientOptions.new
assert options
end
end