aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Code/Blocks/syntax/tests/cases/003_script_tag.html')
-rw-r--r--Code/Blocks/syntax/tests/cases/003_script_tag.html42
1 files changed, 0 insertions, 42 deletions
diff --git a/Code/Blocks/syntax/tests/cases/003_script_tag.html b/Code/Blocks/syntax/tests/cases/003_script_tag.html
deleted file mode 100644
index 9b44292..0000000
--- a/Code/Blocks/syntax/tests/cases/003_script_tag.html
+++ /dev/null
@@ -1,42 +0,0 @@
1<div>
2<script id="sh_003_script_tag" type="syntaxhighlighter" class="brush: csharp" title="Title/caption should render"><![CDATA[
3 partial class Foo
4 {
5 function test()
6 {
7 yield return;
8 yield break;
9 }
10 }
11
12 function foo()
13 {
14 var vector:Vector.<Vector.<String>> = new Vector<Vector.String>>();
15
16 for (var i = 0; i < 10; i++)
17 {
18 /* comments */
19 }
20 }
21]]></script>
22</div>
23
24<script type="text/javascript">
25queue(function()
26{
27 var $sh;
28
29 module('003_script_tag');
30
31 test('basic html check of default elements', function()
32 {
33 $sh = $('#sh_003_script_tag');
34
35 ok_sh($sh);
36 ok_toolbar($sh);
37 ok_caption($sh, 'Title/caption should render');
38 ok_gutter($sh);
39 ok_code($sh);
40 });
41});
42</script>
Powered by cgit v1.2.3 (git 2.41.0)