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

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

Issue 336013003: Version 1.5.0-dev.4.14 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 6 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 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 XQux.created() : super.created(); 52 XQux.created() : super.created();
53 } 53 }
54 54
55 main() => initPolymer().run(() { 55 main() => initPolymer().run(() {
56 useHtmlConfiguration(); 56 useHtmlConfiguration();
57 57
58 setUp(() => Polymer.onReady); 58 setUp(() => Polymer.onReady);
59 59
60 test('published properties', () { 60 test('published properties', () {
61 published(tag) => (new Element.tag(tag) as PolymerElement) 61 published(tag) => (new Element.tag(tag) as PolymerElement)
62 .declaration.publishedProperties; 62 .element.publishedProperties;
63 63
64 expect(published('x-foo'), ['Foo', 'baz']); 64 expect(published('x-foo'), ['Foo', 'baz']);
65 expect(published('x-bar'), ['Foo', 'baz', 'Bar']); 65 expect(published('x-bar'), ['Foo', 'baz', 'Bar']);
66 expect(published('x-zot'), ['Foo', 'baz', 'Bar', 'zot']); 66 expect(published('x-zot'), ['Foo', 'baz', 'Bar', 'zot']);
67 expect(published('x-squid'), ['Foo', 'baz', 'Bar', 'zot', 'squid']); 67 expect(published('x-squid'), ['Foo', 'baz', 'Bar', 'zot', 'squid']);
68 expect(published('x-qux'), ['qux']); 68 expect(published('x-qux'), ['qux']);
69 }); 69 });
70 }); 70 });
OLDNEW
« no previous file with comments | « dart/pkg/polymer/test/property_observe_test.html ('k') | dart/pkg/polymer/test/publish_attributes_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698