Codebase list ohcount / 29f5ec7d-1b44-45ad-9822-90a9c74d506b/main test / src_dir / vbs1.vbs
29f5ec7d-1b44-45ad-9822-90a9c74d506b/main

Tree @29f5ec7d-1b44-45ad-9822-90a9c74d506b/main (Download .tar.gz)

vbs1.vbs @29f5ec7d-1b44-45ad-9822-90a9c74d506b/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