Codebase list ohcount / 4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main test / src_dir / vb1.vb
4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main

Tree @4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main (Download .tar.gz)

vb1.vb @4fa67836-5fea-4473-87e4-bd80a2d5b1ae/mainraw · history · blame

class foo
' comment

require File.dirname(__FILE__) + '/../test_helper'
include Lingo

class ShellTest < LingoTest
	def test_comment
		p = Languages::Shell.parse(" #comment")
		assert_equal({ 'shell' => { :comment => [" #comment"] } }, p.output_buffers)
	end

	def test_comprehensive
		verify_parse("sh1.sh")
	end
end