]> source.dussan.org Git - redmine.git/commitdiff
Added test stubs for testing the Plugin API
authorEric Davis <edavis@littlestreamsoftware.com>
Mon, 28 Jul 2008 23:26:46 +0000 (16:26 -0700)
committerEric Davis <edavis@littlestreamsoftware.com>
Mon, 28 Jul 2008 23:26:46 +0000 (16:26 -0700)
test/unit/lib/redmine/plugin_hook_test.rb [new file with mode: 0644]
test/unit/lib/redmine/plugin_test.rb [new file with mode: 0644]

diff --git a/test/unit/lib/redmine/plugin_hook_test.rb b/test/unit/lib/redmine/plugin_hook_test.rb
new file mode 100644 (file)
index 0000000..d07e3dc
--- /dev/null
@@ -0,0 +1,13 @@
+require File.dirname(__FILE__) + '/../../../test_helper'
+
+class Redmine::Plugin::Hook::ManagerTest < Test::Unit::TestCase
+  def test_sanity
+    assert true
+  end
+end
+
+class Redmine::Plugin::Hook::BaseTest < Test::Unit::TestCase
+  def test_sanity
+    assert true
+  end
+end
diff --git a/test/unit/lib/redmine/plugin_test.rb b/test/unit/lib/redmine/plugin_test.rb
new file mode 100644 (file)
index 0000000..c7d7924
--- /dev/null
@@ -0,0 +1,8 @@
+require File.dirname(__FILE__) + '/../../../test_helper'
+
+class Redmine::PluginTest < Test::Unit::TestCase
+  def test_sanity
+    assert true
+  end
+end
+