summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.de>2009-08-13 09:33:09 +0200
committerChristoph Helma <helma@in-silico.de>2009-08-13 09:33:09 +0200
commitf334010e2deefe71e4207e302485ee03aaaa1a0f (patch)
tree9852843cb2f92c79c2297f183a625d3a28d081d5 /test
Initial commit to opentox-ruby-api-wrapper.
Diffstat (limited to 'test')
-rw-r--r--test/opentox-ruby-api-wrapper_test.rb7
-rw-r--r--test/test_helper.rb10
2 files changed, 17 insertions, 0 deletions
diff --git a/test/opentox-ruby-api-wrapper_test.rb b/test/opentox-ruby-api-wrapper_test.rb
new file mode 100644
index 0000000..6f7f82e
--- /dev/null
+++ b/test/opentox-ruby-api-wrapper_test.rb
@@ -0,0 +1,7 @@
+require 'test_helper'
+
+class OpentoxRubyApiWrapperTest < Test::Unit::TestCase
+ should "probably rename this file and start testing for real" do
+ flunk "hey buddy, you should probably rename this file and start testing for real"
+ end
+end
diff --git a/test/test_helper.rb b/test/test_helper.rb
new file mode 100644
index 0000000..837ad16
--- /dev/null
+++ b/test/test_helper.rb
@@ -0,0 +1,10 @@
+require 'rubygems'
+require 'test/unit'
+require 'shoulda'
+
+$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
+$LOAD_PATH.unshift(File.dirname(__FILE__))
+require 'opentox-ruby-api-wrapper'
+
+class Test::Unit::TestCase
+end