Index: sky/tests/modules/application.sky |
diff --git a/sky/tests/modules/application.sky b/sky/tests/modules/application.sky |
deleted file mode 100644 |
index 6fa8af1912882c77ad0446ace3bef21fc9c97c1c..0000000000000000000000000000000000000000 |
--- a/sky/tests/modules/application.sky |
+++ /dev/null |
@@ -1,14 +0,0 @@ |
-<html> |
-<import src="../resources/chai.sky" /> |
-<import src="../resources/mocha.sky" /> |
-<script> |
-describe('Application', function() { |
- it('should have a constructor', function() { |
- var doc = new Document(); |
- var app = new Application(doc, "http://www.example.com/app"); |
- assert.equal(app.document, doc); |
- assert.equal(app.url, "http://www.example.com/app"); |
- }); |
-}); |
-</script> |
-</html> |