| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |