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 yaml_test; | 5 library yaml_test; |
6 | 6 |
7 import '../../../pkg/unittest/lib/unittest.dart'; | 7 import 'package:unittest/unittest.dart'; |
8 import '../../pub/yaml/yaml.dart'; | 8 import 'package:yaml/yaml.dart'; |
9 import '../../pub/yaml/deep_equals.dart'; | 9 import 'package:yaml/deep_equals.dart'; |
| 10 // TODO(jmesserly): we should not be reaching outside the YAML package |
| 11 // The http package has a similar problem. |
10 import '../../../tests/utils/test_utils.dart'; | 12 import '../../../tests/utils/test_utils.dart'; |
11 | 13 |
12 /// Constructs a new yaml.YamlMap, optionally from a normal Map. | 14 /// Constructs a new yaml.YamlMap, optionally from a normal Map. |
13 Map yamlMap([Map from]) => | 15 Map yamlMap([Map from]) => |
14 from == null ? new YamlMap() : new YamlMap.from(from); | 16 from == null ? new YamlMap() : new YamlMap.from(from); |
15 | 17 |
16 /// Asserts that a string containing a single YAML document produces a given | 18 /// Asserts that a string containing a single YAML document produces a given |
17 /// value when loaded. | 19 /// value when loaded. |
18 expectYamlLoads(expected, String source) { | 20 expectYamlLoads(expected, String source) { |
19 var actual = loadYaml(cleanUpLiteral(source)); | 21 var actual = loadYaml(cleanUpLiteral(source)); |
(...skipping 1848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1868 A null: null | 1870 A null: null |
1869 Also a null: # Empty | 1871 Also a null: # Empty |
1870 Not a null: "" | 1872 Not a null: "" |
1871 Booleans: [ true, True, false, FALSE ] | 1873 Booleans: [ true, True, false, FALSE ] |
1872 Integers: [ 0, 0o7, 0x3A, -19 ] | 1874 Integers: [ 0, 0o7, 0x3A, -19 ] |
1873 Floats: [ 0., -0.0, .5, +12e03, -2E+05 ] | 1875 Floats: [ 0., -0.0, .5, +12e03, -2E+05 ] |
1874 Also floats: [ .inf, -.Inf, +.INF, .NAN ]'''); | 1876 Also floats: [ .inf, -.Inf, +.INF, .NAN ]'''); |
1875 }); | 1877 }); |
1876 }); | 1878 }); |
1877 } | 1879 } |
OLD | NEW |