🏗️
This commit is contained in:
42
skins/posart/js/syntaxhighlighter/tests/cases/001_basic.html
Normal file
42
skins/posart/js/syntaxhighlighter/tests/cases/001_basic.html
Normal file
@@ -0,0 +1,42 @@
|
||||
<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 <= 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>
|
Reference in New Issue
Block a user