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