OLD | NEW |
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 class XBaz extends PolymerElement { | 45 class XBaz extends PolymerElement { |
46 XBaz.created() : super.created(); | 46 XBaz.created() : super.created(); |
47 @observable int qux = 13; | 47 @observable int qux = 13; |
48 } | 48 } |
49 | 49 |
50 @CustomTag('x-qux') | 50 @CustomTag('x-qux') |
51 class XQux extends XBaz { | 51 class XQux extends XBaz { |
52 XQux.created() : super.created(); | 52 XQux.created() : super.created(); |
53 } | 53 } |
54 | 54 |
| 55 @initMethod |
55 main() { | 56 main() { |
56 initPolymer(); | |
57 useHtmlConfiguration(); | 57 useHtmlConfiguration(); |
58 | 58 |
59 setUp(() => Polymer.onReady); | 59 setUp(() => Polymer.onReady); |
60 | 60 |
61 test('published properties', () { | 61 test('published properties', () { |
62 published(tag) => (new Element.tag(tag) as PolymerElement) | 62 published(tag) => (new Element.tag(tag) as PolymerElement) |
63 .declaration.publishedProperties; | 63 .declaration.publishedProperties; |
64 | 64 |
65 expect(published('x-foo'), ['Foo', 'baz']); | 65 expect(published('x-foo'), ['Foo', 'baz']); |
66 expect(published('x-bar'), ['Foo', 'baz', 'Bar']); | 66 expect(published('x-bar'), ['Foo', 'baz', 'Bar']); |
67 expect(published('x-zot'), ['Foo', 'baz', 'Bar', 'zot']); | 67 expect(published('x-zot'), ['Foo', 'baz', 'Bar', 'zot']); |
68 expect(published('x-squid'), ['Foo', 'baz', 'Bar', 'zot', 'squid']); | 68 expect(published('x-squid'), ['Foo', 'baz', 'Bar', 'zot', 'squid']); |
69 expect(published('x-qux'), ['qux']); | 69 expect(published('x-qux'), ['qux']); |
70 }); | 70 }); |
71 } | 71 } |
OLD | NEW |