Mercurial > hg > soundsoftware-site
annotate .svn/pristine/b3/b36297cf2d44103422882a07a880a4a5ace75e6e.svn-base @ 1524:82fac3dcf466 redmine-2.5-integration
Fix failure to interpret Javascript when autocompleting members for project
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Thu, 11 Sep 2014 10:24:38 +0100 |
parents | cbb26bc654de |
children |
rev | line source |
---|---|
Chris@909 | 1 require File.expand_path(File.join(File.dirname(__FILE__), *%w[.. .. .. .. .. test test_helper])) |
Chris@909 | 2 |
Chris@909 | 3 class OverrideTest < ActiveSupport::TestCase |
Chris@909 | 4 def test_overrides_from_the_application_should_work |
Chris@909 | 5 flunk "this test should be overridden by the app" |
Chris@909 | 6 end |
Chris@909 | 7 |
Chris@909 | 8 def test_tests_within_the_plugin_should_still_run |
Chris@909 | 9 assert true, "non-overridden plugin tests should still run" |
Chris@909 | 10 end |
Chris@909 | 11 end |
Chris@909 | 12 |
Chris@909 | 13 Engines::Testing.override_tests_from_app |