diff options
author | JinweiClarkChao <[email protected]> | 2014-08-22 17:23:02 +0800 |
---|---|---|
committer | Jinwei Zhao <[email protected]> | 2017-01-13 15:07:42 +0800 |
commit | 80255411ee7040e0cebbf6b05d2ce323f6f2596e (patch) | |
tree | 295b0ef6c85e7cb091b63719ab041596879690fa /Blocks/syntax/tests/cases/013_html_script.html | |
parent | 13be3d058713e1467ffc573a90cc694b80526135 (diff) | |
download | jinwei.me-80255411ee7040e0cebbf6b05d2ce323f6f2596e.tar.gz |
backup
Diffstat (limited to 'Blocks/syntax/tests/cases/013_html_script.html')
-rw-r--r-- | Blocks/syntax/tests/cases/013_html_script.html | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/Blocks/syntax/tests/cases/013_html_script.html b/Blocks/syntax/tests/cases/013_html_script.html deleted file mode 100644 index c0a1201..0000000 --- a/Blocks/syntax/tests/cases/013_html_script.html +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | <pre id="sh_013_html_script" class="brush: groovy; html-script: true"> | ||
2 | <hello> | ||
3 | <% | ||
4 | package free.cafekiwi.gotapi; | ||
5 | %> | ||
6 | </hello> | ||
7 | |||
8 | <!-- | ||
9 | Comments here | ||
10 | --> | ||
11 | <%= print(); %> | ||
12 | </pre> | ||
13 | |||
14 | <script type="text/javascript"> | ||
15 | queue(function() | ||
16 | { | ||
17 | var $sh; | ||
18 | |||
19 | module('013_html_script'); | ||
20 | |||
21 | test('check markup', function() | ||
22 | { | ||
23 | $sh = $('#sh_013_html_script'); | ||
24 | |||
25 | ok_sh($sh); | ||
26 | ok_gutter($sh); | ||
27 | ok_code($sh); | ||
28 | |||
29 | ok($sh.find('.code .number1 > .htmlscript').length > 0, 'Has .htmlscript on line 1'); | ||
30 | ok($sh.find('.code .number3 > .groovy').length > 0, 'Has .groovy on line 3'); | ||
31 | ok($sh.find('.code .number10 > .groovy').length > 0, 'Has .groovy on line 10'); | ||
32 | }); | ||
33 | }); | ||
34 | </script> \ No newline at end of file | ||