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

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

Issue 132403010: big update to observe, template_binding, polymer (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 main() { 49 main() {
50 initPolymer(); 50 initPolymer();
51 useHtmlConfiguration(); 51 useHtmlConfiguration();
52 52
53 setUp(() => Polymer.onReady); 53 setUp(() => Polymer.onReady);
54 54
55 test('published properties', () { 55 test('published properties', () {
56 published(tag) => (query('polymer-element[name=$tag]') 56 published(tag) => (query('polymer-element[name=$tag]')
57 as PolymerDeclaration).publishedProperties; 57 as PolymerDeclaration).publishedProperties;
58 58
59 expect(published('x-zot'), [#Foo, #Bar, #zot, #m]); 59 expect(published('x-zot'), ['Foo', 'Bar', 'zot', 'm']);
60 expect(published('x-squid'), [#Foo, #Bar, #zot, #m, #baz, #squid]); 60 expect(published('x-squid'), ['Foo', 'Bar', 'zot', 'm', 'baz', 'squid']);
61 expect(published('x-noscript'), [#Foo, #Bar, #zot, #m]); 61 expect(published('x-noscript'), ['Foo', 'Bar', 'zot', 'm']);
62 // TODO(sigmund): uncomment, see above 62 // TODO(sigmund): uncomment, see above
63 // expect(published('x-squid'), [#Foo, #Bar, #zot, #zap, #baz, #squid]); 63 // expect(published('x-squid'), [#Foo, #Bar, #zot, #zap, #baz, #squid]);
64 }); 64 });
65 } 65 }
OLDNEW
« no previous file with comments | « pkg/polymer/test/publish_attributes_test.dart ('k') | pkg/polymer_expressions/example/streams/collect_key_press.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698