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