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 / vendor / gems / coderay-0.9.7 / test / functional / load_plugin_scanner.rb @ 442:753f1380d6bc

History | View | Annotate | Download (231 Bytes)

1
require 'test/unit'
2
require 'coderay'
3

    
4
class PluginScannerTest < Test::Unit::TestCase
5
  
6
  def test_load
7
    require File.join(File.dirname(__FILE__), 'vhdl')
8
    assert_equal 'VHDL', CodeRay.scanner(:vhdl).class.name
9
  end
10
  
11
end