1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-03-11 19:53:07 +00:00

Added test stubs for testing the Plugin API

This commit is contained in:
Eric Davis 2008-07-28 16:26:46 -07:00
parent c5242b4386
commit d6808130dc
2 changed files with 21 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,8 @@
require File.dirname(__FILE__) + '/../../../test_helper'
class Redmine::PluginTest < Test::Unit::TestCase
def test_sanity
assert true
end
end