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 / 6a / 6ae02e008b39a032972c4d067b7e08a8c9bd1a60.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (308 Bytes)

1
require File.dirname(__FILE__) + '/../test_helper'
2

    
3
class PluginsTest < Test::Unit::TestCase
4
  
5
  def test_should_allow_access_to_plugins_by_strings_or_symbols
6
    p = Engines.plugins["alpha_plugin"]
7
    q = Engines.plugins[:alpha_plugin]
8
    assert_kind_of Engines::Plugin, p
9
    assert_equal p, q
10
  end
11
end