diff options
Diffstat (limited to 'vendor/gems/coderay-0.9.7/test/functional/load_plugin_scanner.rb')
-rw-r--r-- | vendor/gems/coderay-0.9.7/test/functional/load_plugin_scanner.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/gems/coderay-0.9.7/test/functional/load_plugin_scanner.rb b/vendor/gems/coderay-0.9.7/test/functional/load_plugin_scanner.rb new file mode 100644 index 000000000..25bbc93a6 --- /dev/null +++ b/vendor/gems/coderay-0.9.7/test/functional/load_plugin_scanner.rb @@ -0,0 +1,11 @@ +require 'test/unit' +require 'coderay' + +class PluginScannerTest < Test::Unit::TestCase + + def test_load + require File.join(File.dirname(__FILE__), 'vhdl') + assert_equal 'VHDL', CodeRay.scanner(:vhdl).class.name + end + +end |