| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 | 48 |
| 49 main() => initPolymer().run(() { | 49 main() => initPolymer().run(() { |
| 50 useHtmlConfiguration(); | 50 useHtmlConfiguration(); |
| 51 | 51 |
| 52 setUp(() => Polymer.onReady.then((_) { | 52 setUp(() => Polymer.onReady.then((_) { |
| 53 Polymer.register('x-noscript', XZot); | 53 Polymer.register('x-noscript', XZot); |
| 54 })); | 54 })); |
| 55 | 55 |
| 56 test('published properties', () { | 56 test('published properties', () { |
| 57 published(tag) => (new Element.tag(tag) as PolymerElement) | 57 published(tag) => (new Element.tag(tag) as PolymerElement) |
| 58 .declaration.publishedProperties; | 58 .element.publishedProperties; |
| 59 | 59 |
| 60 expect(published('x-zot'), ['Foo', 'Bar', 'zot', 'm']); | 60 expect(published('x-zot'), ['Foo', 'Bar', 'zot', 'm']); |
| 61 expect(published('x-squid'), ['Foo', 'Bar', 'zot', 'm', 'baz', 'squid']); | 61 expect(published('x-squid'), ['Foo', 'Bar', 'zot', 'm', 'baz', 'squid']); |
| 62 expect(published('x-noscript'), ['Foo', 'Bar', 'zot', 'm']); | 62 expect(published('x-noscript'), ['Foo', 'Bar', 'zot', 'm']); |
| 63 // TODO(sigmund): uncomment, see above | 63 // TODO(sigmund): uncomment, see above |
| 64 // expect(published('x-squid'), [#Foo, #Bar, #zot, #zap, #baz, #squid]); | 64 // expect(published('x-squid'), [#Foo, #Bar, #zot, #zap, #baz, #squid]); |
| 65 }); | 65 }); |
| 66 }); | 66 }); |
| OLD | NEW |