Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(486)

Unified Diff: sky/tests/modules/multiple-scripts-import.sky

Issue 1215063003: Remove Sky tests that we don't intend to port to the new world (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sky/tests/modules/multiple-scripts-import.sky
diff --git a/sky/tests/modules/multiple-scripts-import.sky b/sky/tests/modules/multiple-scripts-import.sky
deleted file mode 100644
index da450d7adf750086d396fe2b3054820829956598..0000000000000000000000000000000000000000
--- a/sky/tests/modules/multiple-scripts-import.sky
+++ /dev/null
@@ -1,28 +0,0 @@
-<sky>
-<import src='resources/multiple-scripts-child.sky' as='child'></import>
-<script>
-import "../resources/third_party/unittest/unittest.dart";
-import "../resources/unit.dart";
-
-import "dart:sky";
-import "dart:sky.internals";
-
-void main () {
- initUnit();
-
- test('multiple libraries should combine using "as"', () {
- expect(child.one, 'one');
- expect(child.two, 'two');
- });
-
- test('multiple libraries should each init', () {
- expect(child.oneInit, true);
- expect(child.twoInit, true);
- });
-
- test('conflicting names should be ignored', () {
- expect(() => child.conflict, throwsNoSuchMethodError);
- });
-}
-</script>
-</sky>

Powered by Google App Engine
This is Rietveld 408576698