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

Side by Side Diff: pkg/polymer/test/publish_attributes_test.dart

Issue 29823005: fixes to polymer, gets tests back to a stable state (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import 'dart:html'; 5 import 'dart:html';
6 import 'package:unittest/unittest.dart'; 6 import 'package:unittest/unittest.dart';
7 import 'package:unittest/html_config.dart'; 7 import 'package:unittest/html_config.dart';
8 import 'package:polymer/polymer.dart'; 8 import 'package:polymer/polymer.dart';
9 9
10 // Dart note: unlike JS, you can't publish something that doesn't 10 // Dart note: unlike JS, you can't publish something that doesn't
(...skipping 26 matching lines...) Expand all
37 XSquid.created() : super.created(); 37 XSquid.created() : super.created();
38 38
39 @published int baz = 13; 39 @published int baz = 13;
40 @published int zot = 5; 40 @published int zot = 5;
41 @published int squid = 7; 41 @published int squid = 7;
42 } 42 }
43 43
44 @initMethod _main() { 44 @initMethod _main() {
45 useHtmlConfiguration(); 45 useHtmlConfiguration();
46 46
47 setUp(() => Polymer.onReady);
48
47 test('published properties', () { 49 test('published properties', () {
48 published(tag) => 50 published(tag) =>
49 query('polymer-element[name=$tag]').xtag.publishedProperties; 51 query('polymer-element[name=$tag]').xtag.publishedProperties;
50 52
51 print(published('x-foo')); 53 print(published('x-foo'));
52 print(published('x-bar')); 54 print(published('x-bar'));
53 print(published('x-zot')); 55 print(published('x-zot'));
54 print(published('x-squid')); 56 print(published('x-squid'));
55 57
56 expect(published('x-foo'), ['Foo', 'baz']); 58 expect(published('x-foo'), ['Foo', 'baz']);
57 expect(published('x-bar'), ['Foo', 'baz', 'Bar']); 59 expect(published('x-bar'), ['Foo', 'baz', 'Bar']);
58 expect(published('x-zot'), ['Foo', 'baz', 'Bar', 'zot']); 60 expect(published('x-zot'), ['Foo', 'baz', 'Bar', 'zot']);
59 expect(published('x-squid'), ['Foo', 'baz', 'Bar', 'zot', 'squid']); 61 expect(published('x-squid'), ['Foo', 'baz', 'Bar', 'zot', 'squid']);
60 }); 62 });
61 } 63 }
OLDNEW
« no previous file with comments | « pkg/polymer/test/prop_attr_reflection_test.dart ('k') | samples/third_party/todomvc/test/listorder_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698