annotate .svn/pristine/b3/b36297cf2d44103422882a07a880a4a5ace75e6e.svn-base @ 952:12f729c9f47d bibplugin_bibtex

the "authors" div was not closing correctly - fixed now.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Mon, 06 Aug 2012 12:13:28 +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