view .svn/pristine/b3/b36297cf2d44103422882a07a880a4a5ace75e6e.svn-base @ 1237:1d5451bf82d7 redmine-2.2-integration

Added missing route to auto_completes#project_tags (AutoCompletes controller patched in redmine tags plugin)
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 26 Mar 2013 15:11:27 +0000
parents cbb26bc654de
children
line wrap: on
line source
require File.expand_path(File.join(File.dirname(__FILE__), *%w[.. .. .. .. .. test test_helper]))

class OverrideTest < ActiveSupport::TestCase
  def test_overrides_from_the_application_should_work
    flunk "this test should be overridden by the app"
  end
  
  def test_tests_within_the_plugin_should_still_run
    assert true, "non-overridden plugin tests should still run"
  end
end

Engines::Testing.override_tests_from_app