blob: 39b4f23b4d01e44a50c26193c7ee41203301f006 [file] [log] [blame]
# test classes of extension
require 'test/unit'
$:.unshift "../../../build/bindings/ruby"
$:.unshift "../.libs"
$:.unshift ".."
class LoadTest < Test::Unit::TestCase
def test_loading
require 'openwsman/openwsman'
Openwsman.constants.sort.each do |c|
next if c == c.upcase
puts c
end
end
end