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

Side by Side Diff: test/utils_test.dart

Issue 1556243002: Fix analyzer hints and warnings in test/. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Created 4 years, 11 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 utils_test; 5 library utils_test;
6 6
7 import 'package:pub/src/utils.dart'; 7 import 'package:pub/src/utils.dart';
8 import 'package:test/test.dart'; 8 import 'package:test/test.dart';
9 9
10 import 'test_pub.dart';
11
12 main() { 10 main() {
13 group('yamlToString()', () { 11 group('yamlToString()', () {
14 test('null', () { 12 test('null', () {
15 expect(yamlToString(null), equals('null')); 13 expect(yamlToString(null), equals('null'));
16 }); 14 });
17 15
18 test('numbers', () { 16 test('numbers', () {
19 expect(yamlToString(123), equals('123')); 17 expect(yamlToString(123), equals('123'));
20 expect(yamlToString(12.34), equals('12.34')); 18 expect(yamlToString(12.34), equals('12.34'));
21 }); 19 });
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 }); 79 });
82 80
83 test('handles empty maps', () { 81 test('handles empty maps', () {
84 expect(yamlToString({}), equals("{}")); 82 expect(yamlToString({}), equals("{}"));
85 expect(yamlToString({'a': {}, 'b': {}}), equals(""" 83 expect(yamlToString({'a': {}, 'b': {}}), equals("""
86 a: {} 84 a: {}
87 b: {}""")); 85 b: {}"""));
88 }); 86 });
89 }); 87 });
90 } 88 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698