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

Side by Side Diff: dart/samples/polymer_intl/test/polymer_intl_test.dart

Issue 227533007: Update TodoMVC and other samples for polymer 0.10.0-pre.7 Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 8 months 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
OLDNEW
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 library polymer_intl_test; 5 library polymer_intl_test;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:html'; 8 import 'dart:html';
9 import 'package:polymer/polymer.dart'; 9 import 'package:polymer/polymer.dart';
10 import 'package:unittest/unittest.dart'; 10 import 'package:unittest/unittest.dart';
11 import 'package:unittest/html_config.dart'; 11 import 'package:unittest/html_config.dart';
12 import '../web/localized.dart'; 12 import '../web/localized.dart';
13 13
14 /** 14 /**
15 * A trivial test to get the analyzer plugged into this sample. See 15 * A trivial test to get the analyzer plugged into this sample. See
16 * searchable_list_test.dart. 16 * searchable_list_test.dart.
17 */ 17 */
18 @initMethod
18 main() { 19 main() {
19 initPolymer();
20 useHtmlConfiguration(); 20 useHtmlConfiguration();
21 21
22 setUp(() => Polymer.onReady); 22 setUp(() => Polymer.onReady);
23 23
24 test('loading the element', () { 24 test('loading the element', () {
25 return new Future(() { 25 return new Future(() {
26 var localized = querySelector('localized-example'); 26 var localized = querySelector('localized-example');
27 expect(localized is LocalizedExampleElement, isTrue); 27 expect(localized is LocalizedExampleElement, isTrue);
28 }); 28 });
29 }); 29 });
30 } 30 }
OLDNEW
« no previous file with comments | « dart/samples/polymer_intl/pubspec.yaml ('k') | dart/samples/polymer_intl/test/polymer_intl_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698