Codebase list ohcount / c941801a-846c-49c1-93c4-07f1094d7537/main test / src_dir / vbs1.vbs
c941801a-846c-49c1-93c4-07f1094d7537/main

Tree @c941801a-846c-49c1-93c4-07f1094d7537/main (Download .tar.gz)

vbs1.vbs @c941801a-846c-49c1-93c4-07f1094d7537/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