1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt-doc.git synced 2025-04-24 19:47:11 -07:00
kobalt-doc/sh/tests/cases/001_basic.html
2015-12-05 16:29:15 -08:00

42 lines
728 B
HTML

<pre id="sh_001_basic" class="brush: js;" title="Title/caption should render">
/**
* multiline comment
*/
text
// single line comment
text
"string" text 'string' text "string"
"string with \" escape" text 'string with \' escape' text "string with \" escape"
var code = '\
function helloWorld()\
{\
// this is great!\
for(var i = 0; i &lt;= 1; i++)\
alert("yay");\
}\
';
</pre>
<script type="text/javascript">
queue(function()
{
var $sh;
module('001_basic');
test('basic html check of default elements', function()
{
$sh = $('#sh_001_basic');
ok_sh($sh);
ok_toolbar($sh);
ok_caption($sh, 'Title/caption should render');
ok_gutter($sh);
ok_code($sh);
});
});
</script>