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

Side by Side Diff: sky/tests/lowlevel/create-document.sky

Issue 1212163009: Port remaining Sky tests to the new world (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: add Created 5 years, 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <script>
3 import "../resources/third_party/unittest/unittest.dart";
4 import "../resources/unit.dart";
5
6 import "dart:sky";
7
8 main() {
9 initUnit();
10
11 test('should have a constructor', () {
12 var doc = new Document();
13 expect(doc, isNotNull);
14 // assert.doesNotThrow(function() {
15 // doc.registerElement('x-foo');
16 // }, 'new document should have a registration context');
17 });
18 }
19 </script>
20 </html>
OLDNEW
« no previous file with comments | « sky/tests/lowlevel/attribute-collection-expected.txt ('k') | sky/tests/lowlevel/create-document-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698