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

Side by Side Diff: test/utils_test.dart

Issue 1585513002: Get rid of all the library tags. (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;
6
7 import 'package:pub/src/utils.dart'; 5 import 'package:pub/src/utils.dart';
8 import 'package:test/test.dart'; 6 import 'package:test/test.dart';
9 7
10 main() { 8 main() {
11 group('yamlToString()', () { 9 group('yamlToString()', () {
12 test('null', () { 10 test('null', () {
13 expect(yamlToString(null), equals('null')); 11 expect(yamlToString(null), equals('null'));
14 }); 12 });
15 13
16 test('numbers', () { 14 test('numbers', () {
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 }); 77 });
80 78
81 test('handles empty maps', () { 79 test('handles empty maps', () {
82 expect(yamlToString({}), equals("{}")); 80 expect(yamlToString({}), equals("{}"));
83 expect(yamlToString({'a': {}, 'b': {}}), equals(""" 81 expect(yamlToString({'a': {}, 'b': {}}), equals("""
84 a: {} 82 a: {}
85 b: {}""")); 83 b: {}"""));
86 }); 84 });
87 }); 85 });
88 } 86 }
OLDNEW
« no previous file with comments | « test/upgrade/report/shows_number_of_changed_dependencies_test.dart ('k') | test/validator/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698