To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / b3 / b36297cf2d44103422882a07a880a4a5ace75e6e.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (428 Bytes)

1
require File.expand_path(File.join(File.dirname(__FILE__), *%w[.. .. .. .. .. test test_helper]))
2

    
3
class OverrideTest < ActiveSupport::TestCase
4
  def test_overrides_from_the_application_should_work
5
    flunk "this test should be overridden by the app"
6
  end
7
  
8
  def test_tests_within_the_plugin_should_still_run
9
    assert true, "non-overridden plugin tests should still run"
10
  end
11
end
12

    
13
Engines::Testing.override_tests_from_app