Mercurial > hg > soundsoftware-site
annotate .svn/pristine/b3/b36297cf2d44103422882a07a880a4a5ace75e6e.svn-base @ 1519:afce8026aaeb redmine-2.4-integration
Merge from branch "live"
author | Chris Cannam |
---|---|
date | Tue, 09 Sep 2014 09:34:53 +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 |