Chris@909: require File.expand_path(File.join(File.dirname(__FILE__), *%w[.. .. .. .. .. test test_helper])) Chris@909: Chris@909: class OverrideTest < ActiveSupport::TestCase Chris@909: def test_overrides_from_the_application_should_work Chris@909: flunk "this test should be overridden by the app" Chris@909: end Chris@909: Chris@909: def test_tests_within_the_plugin_should_still_run Chris@909: assert true, "non-overridden plugin tests should still run" Chris@909: end Chris@909: end Chris@909: Chris@909: Engines::Testing.override_tests_from_app