Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Side by Side Diff: pkg/polymer/test/nested_binding_test.dart

Issue 54983011: "Reverting 29728" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/pkg.status ('k') | pkg/polymer/test/nested_binding_test.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 library polymer.test.nested_binding_test;
6
7 import 'dart:async';
8 import 'dart:html';
9 import 'package:polymer/polymer.dart';
10 import 'package:unittest/unittest.dart';
11 import 'package:unittest/html_config.dart';
12 import 'package:unittest/matcher.dart';
13
14 @CustomTag('my-test')
15 class MyTest extends PolymerElement {
16 final List fruits = toObservable(['apples', 'oranges', 'pears']);
17
18 final _testDone = new Completer();
19
20 MyTest.created() : super.created();
21
22 _runTest(_) {
23 expect($['fruit'].text.trim(), 'Short name: [pears]');
24 _testDone.complete();
25 }
26
27 ready() {
28 onMutation($['fruit']).then(_runTest);
29 }
30 }
31
32 main() {
33 initPolymer();
34 useHtmlConfiguration();
35
36 setUp(() => Polymer.onReady);
37
38 test('ready called', () => (query('my-test') as MyTest)._testDone.future);
39 }
OLDNEW
« no previous file with comments | « pkg/pkg.status ('k') | pkg/polymer/test/nested_binding_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698