view vendor/plugins/engines/test/unit/backwards_compat_test.rb @ 691:f8d7e85ccd4e feature_36

Feature #293: lists the projects associated with a publication.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Fri, 16 Sep 2011 17:06:58 +0100
parents 513646585e45
children
line wrap: on
line source
require File.dirname(__FILE__) + '/../test_helper'

class BackwardsCompatibilityTest < Test::Unit::TestCase
  def test_rails_module_plugin_method_should_delegate_to_engines_plugins
    assert_nothing_raised { Rails.plugins }
    assert_equal Engines.plugins, Rails.plugins 
  end
end