| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 main() { | 44 main() { |
| 45 initPolymer(); | 45 initPolymer(); |
| 46 useHtmlConfiguration(); | 46 useHtmlConfiguration(); |
| 47 | 47 |
| 48 setUp(() => Polymer.onReady); | 48 setUp(() => Polymer.onReady); |
| 49 | 49 |
| 50 test('published properties', () { | 50 test('published properties', () { |
| 51 published(tag) => | 51 published(tag) => |
| 52 query('polymer-element[name=$tag]').publishedProperties; | 52 query('polymer-element[name=$tag]').publishedProperties; |
| 53 | 53 |
| 54 print(published('x-foo')); | 54 expect(published('x-foo'), [#Foo, #baz]); |
| 55 print(published('x-bar')); | 55 expect(published('x-bar'), [#Foo, #baz, #Bar]); |
| 56 print(published('x-zot')); | 56 expect(published('x-zot'), [#Foo, #baz, #Bar, #zot]); |
| 57 print(published('x-squid')); | 57 expect(published('x-squid'), [#Foo, #baz, #Bar, #zot, #squid]); |
| 58 | |
| 59 expect(published('x-foo'), ['Foo', 'baz']); | |
| 60 expect(published('x-bar'), ['Foo', 'baz', 'Bar']); | |
| 61 expect(published('x-zot'), ['Foo', 'baz', 'Bar', 'zot']); | |
| 62 expect(published('x-squid'), ['Foo', 'baz', 'Bar', 'zot', 'squid']); | |
| 63 }); | 58 }); |
| 64 } | 59 } |
| OLD | NEW |