Mercurial > hg > soundsoftware-site
view .svn/pristine/6a/6ae02e008b39a032972c4d067b7e08a8c9bd1a60.svn-base @ 1195:7f94e4180a2f feature_564
Only show tags used more than once. Not sure about this one
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Tue, 22 Jan 2013 17:11:01 +0000 |
parents | cbb26bc654de |
children |
line wrap: on
line source
require File.dirname(__FILE__) + '/../test_helper' class PluginsTest < Test::Unit::TestCase def test_should_allow_access_to_plugins_by_strings_or_symbols p = Engines.plugins["alpha_plugin"] q = Engines.plugins[:alpha_plugin] assert_kind_of Engines::Plugin, p assert_equal p, q end end