Mercurial > hg > soundsoftware-site
view test/helper_testcase.rb @ 1080:5bd8c86cfa6a issue_540
Makes the Publication model act as an activity; overloading the default ActivitiesController#index view in the Bibliography Plugin in order to differentiate Publications from the other event types.
* Known issues:
** route to /activities is not working (only to /activity);
** publication cache needs to be implemented in the model, not in the helper;
** when a publication is added to n projects, n events are created (all with the same content).
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Thu, 22 Nov 2012 16:51:23 +0000 |
parents | cbb26bc654de |
children |
line wrap: on
line source
# Re-raise errors caught by the controller. class StubController < ApplicationController def rescue_action(e) raise e end; attr_accessor :request, :url end class HelperTestCase < ActiveSupport::TestCase # Add other helpers here if you need them include ActionView::Helpers::ActiveRecordHelper include ActionView::Helpers::TagHelper include ActionView::Helpers::FormTagHelper include ActionView::Helpers::FormOptionsHelper include ActionView::Helpers::FormHelper include ActionView::Helpers::UrlHelper include ActionView::Helpers::AssetTagHelper include ActionView::Helpers::PrototypeHelper def setup super @request = ActionController::TestRequest.new @controller = StubController.new @controller.request = @request # Fake url rewriter so we can test url_for @controller.url = ActionController::UrlRewriter.new @request, {} ActionView::Helpers::AssetTagHelper::reset_javascript_include_default end def test_dummy # do nothing - required by test/unit end end