summaryrefslogtreecommitdiff
path: root/swig/ruby/tests/loading.rb
diff options
context:
space:
mode:
Diffstat (limited to 'swig/ruby/tests/loading.rb')
-rw-r--r--swig/ruby/tests/loading.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/swig/ruby/tests/loading.rb b/swig/ruby/tests/loading.rb
new file mode 100644
index 0000000..01ae25a
--- /dev/null
+++ b/swig/ruby/tests/loading.rb
@@ -0,0 +1,16 @@
+#
+# Test loading of the bindings
+#
+
+$:.unshift "../../../build/swig/ruby"
+
+
+# test loading of extension
+require 'test/unit'
+
+class LoadTest < Test::Unit::TestCase
+ def test_loading
+ require 'zypp'
+ assert true
+ end
+end