Codebase list ohcount / run/8fccc97f-1091-4606-8a80-1b8fb386766a/main test / src_dir / vbs1.vbs
run/8fccc97f-1091-4606-8a80-1b8fb386766a/main

Tree @run/8fccc97f-1091-4606-8a80-1b8fb386766a/main (Download .tar.gz)

vbs1.vbs @run/8fccc97f-1091-4606-8a80-1b8fb386766a/mainraw · history · blame

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