| 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 19 matching lines...) Expand all Loading... |
| 30 XZot.created() : super.created(); | 30 XZot.created() : super.created(); |
| 31 | 31 |
| 32 @published int zot = 3; | 32 @published int zot = 3; |
| 33 } | 33 } |
| 34 | 34 |
| 35 @CustomTag('x-squid') | 35 @CustomTag('x-squid') |
| 36 class XSquid extends XZot { | 36 class XSquid extends XZot { |
| 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 = 3; |
| 41 @published int squid = 7; | 41 @published int squid = 7; |
| 42 } | 42 } |
| 43 | 43 |
| 44 // Test inherited "attriubtes" |
| 45 class XBaz extends PolymerElement { |
| 46 XBaz.created() : super.created(); |
| 47 @observable int qux = 13; |
| 48 } |
| 49 |
| 50 @CustomTag('x-qux') |
| 51 class XQux extends XBaz { |
| 52 XQux.created() : super.created(); |
| 53 } |
| 54 |
| 44 main() { | 55 main() { |
| 45 initPolymer(); | 56 initPolymer(); |
| 46 useHtmlConfiguration(); | 57 useHtmlConfiguration(); |
| 47 | 58 |
| 48 setUp(() => Polymer.onReady); | 59 setUp(() => Polymer.onReady); |
| 49 | 60 |
| 50 test('published properties', () { | 61 test('published properties', () { |
| 51 published(tag) => (query('polymer-element[name=$tag]') | 62 published(tag) => (query('polymer-element[name=$tag]') |
| 52 as PolymerDeclaration).publishedProperties; | 63 as PolymerDeclaration).publishedProperties; |
| 53 | 64 |
| 54 expect(published('x-foo'), [#Foo, #baz]); | 65 expect(published('x-foo'), [#Foo, #baz]); |
| 55 expect(published('x-bar'), [#Foo, #baz, #Bar]); | 66 expect(published('x-bar'), [#Foo, #baz, #Bar]); |
| 56 expect(published('x-zot'), [#Foo, #baz, #Bar, #zot]); | 67 expect(published('x-zot'), [#Foo, #baz, #Bar, #zot]); |
| 57 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]); |
| 58 }); | 70 }); |
| 59 } | 71 } |
| OLD | NEW |