spassky 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,9 @@
1
+ <html>
2
+ <head>
3
+ </head>
4
+ <body>
5
+ <h1>A QUnit Suite</h1>
6
+ <script type="text/javascript" src="qunit.js"></script>
7
+ <script type="text/javascript" src="main.js"></script>
8
+ </body>
9
+ </html>
@@ -0,0 +1,11 @@
1
+ QUnit.done = function(result) {
2
+ if (result.failed > 0) {
3
+ assert(false, "qunit failed");
4
+ } else {
5
+ assert(true, "qunit passed");
6
+ }
7
+ };
8
+
9
+ test("it passes", function() {
10
+ ok(true, "it passed");
11
+ });