File: test.html

package info (click to toggle)
python-pattern 2.6%2Bgit20150109-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 78,672 kB
  • sloc: python: 53,865; xml: 11,965; ansic: 2,318; makefile: 94
file content (17 lines) | stat: -rw-r--r-- 606 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
	<!-- Import modules. -->
	<script type="text/javascript" src="../pattern/canvas.js"></script>
	<script type="text/javascript" src="../pattern/graph/graph.js"></script>
	<!-- Import unit tests. -->
	<script type="text/javascript" src="test.js"></script>
	<script type="text/javascript" src="test_canvas.js"></script>
	<script type="text/javascript" src="test_graph.js"></script>
	<!-- Run unit tests. -->
	<script type="text/javascript">
		run(new test_canvas.suite());
		run(new test_graph.suite());
	</script>
</head>
<body>Output is printed to the console (Developer Tools).</body>
</html>