| 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 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 @CustomTag('x-squid') | 40 @CustomTag('x-squid') |
| 41 class XSquid extends XZot { | 41 class XSquid extends XZot { |
| 42 XSquid.created() : super.created(); | 42 XSquid.created() : super.created(); |
| 43 | 43 |
| 44 @published int baz = 13; | 44 @published int baz = 13; |
| 45 @published int zot = 5; | 45 @published int zot = 5; |
| 46 @published int squid = 7; | 46 @published int squid = 7; |
| 47 } | 47 } |
| 48 | 48 |
| 49 @initMethod |
| 49 main() { | 50 main() { |
| 50 initPolymer(); | |
| 51 useHtmlConfiguration(); | 51 useHtmlConfiguration(); |
| 52 | 52 |
| 53 setUp(() => Polymer.onReady.then((_) { | 53 setUp(() => Polymer.onReady.then((_) { |
| 54 Polymer.register('x-noscript', XZot); | 54 Polymer.register('x-noscript', XZot); |
| 55 })); | 55 })); |
| 56 | 56 |
| 57 test('published properties', () { | 57 test('published properties', () { |
| 58 published(tag) => (new Element.tag(tag) as PolymerElement) | 58 published(tag) => (new Element.tag(tag) as PolymerElement) |
| 59 .declaration.publishedProperties; | 59 .declaration.publishedProperties; |
| 60 | 60 |
| 61 expect(published('x-zot'), ['Foo', 'Bar', 'zot', 'm']); | 61 expect(published('x-zot'), ['Foo', 'Bar', 'zot', 'm']); |
| 62 expect(published('x-squid'), ['Foo', 'Bar', 'zot', 'm', 'baz', 'squid']); | 62 expect(published('x-squid'), ['Foo', 'Bar', 'zot', 'm', 'baz', 'squid']); |
| 63 expect(published('x-noscript'), ['Foo', 'Bar', 'zot', 'm']); | 63 expect(published('x-noscript'), ['Foo', 'Bar', 'zot', 'm']); |
| 64 // TODO(sigmund): uncomment, see above | 64 // TODO(sigmund): uncomment, see above |
| 65 // expect(published('x-squid'), [#Foo, #Bar, #zot, #zap, #baz, #squid]); | 65 // expect(published('x-squid'), [#Foo, #Bar, #zot, #zap, #baz, #squid]); |
| 66 }); | 66 }); |
| 67 } | 67 } |
| OLD | NEW |