mirror of
https://github.com/redmine/redmine.git
synced 2026-07-06 06:48:09 +02:00
Added test stubs for testing the Plugin API
This commit is contained in:
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
|
||||
|
||||
Reference in New Issue
Block a user