Browse Source

Added test stubs for testing the Plugin API

plugin-hooks
Eric Davis 16 years ago
parent
commit
d6808130dc
2 changed files with 21 additions and 0 deletions
  1. 13
    0
      test/unit/lib/redmine/plugin_hook_test.rb
  2. 8
    0
      test/unit/lib/redmine/plugin_test.rb

+ 13
- 0
test/unit/lib/redmine/plugin_hook_test.rb 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

+ 8
- 0
test/unit/lib/redmine/plugin_test.rb 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


Loading…
Cancel
Save