Codebase list ohcount / upstream/4.0.0+git20210223.6654d48 test / src_dir / vbs1.vbs
upstream/4.0.0+git20210223.6654d48

Tree @upstream/4.0.0+git20210223.6654d48 (Download .tar.gz)

vbs1.vbs @upstream/4.0.0+git20210223.6654d48raw · 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