Mercurial > hg > soundsoftware-site
annotate vendor/gems/coderay-0.9.7/test/functional/load_plugin_scanner.rb @ 932:5d2b359e644d cannam
Clarify repo instructions to tell user to reload page, not just look at it again
author | Chris Cannam |
---|---|
date | Wed, 04 Jul 2012 11:01:32 +0100 |
parents | 0579821a129a |
children |
rev | line source |
---|---|
Chris@210 | 1 require 'test/unit' |
Chris@210 | 2 require 'coderay' |
Chris@210 | 3 |
Chris@210 | 4 class PluginScannerTest < Test::Unit::TestCase |
Chris@210 | 5 |
Chris@210 | 6 def test_load |
Chris@210 | 7 require File.join(File.dirname(__FILE__), 'vhdl') |
Chris@210 | 8 assert_equal 'VHDL', CodeRay.scanner(:vhdl).class.name |
Chris@210 | 9 end |
Chris@210 | 10 |
Chris@210 | 11 end |