annotate .svn/pristine/b3/b36297cf2d44103422882a07a880a4a5ace75e6e.svn-base @ 1284:3ce07a57ce68 redmine-2.2-integration

Correctly adds the author info to the input fields; corrected toggle function.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 14 May 2013 15:51:20 +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