Initial Revision
[ohcount] / test / src_dir / vbs1.vbs
1
2 require File.dirname(__FILE__) + '/../test_helper'
3 include Lingo
4
5 class ShellTest < LingoTest
6         def test_comment
7                 p = Languages::Shell.parse(" #comment")
8                 assert_equal({ 'shell' => { :comment => [" #comment"] } }, p.output_buffers)
9         end
10
11         def test_comprehensive
12                 verify_parse("sh1.sh")
13         end
14 end