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:
parent
c5242b4386
commit
d6808130dc
13
test/unit/lib/redmine/plugin_hook_test.rb
Normal file
13
test/unit/lib/redmine/plugin_hook_test.rb
Normal 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
|
||||
8
test/unit/lib/redmine/plugin_test.rb
Normal file
8
test/unit/lib/redmine/plugin_test.rb
Normal file
@ -0,0 +1,8 @@
|
||||
require File.dirname(__FILE__) + '/../../../test_helper'
|
||||
|
||||
class Redmine::PluginTest < Test::Unit::TestCase
|
||||
def test_sanity
|
||||
assert true
|
||||
end
|
||||
end
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user