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

Side by Side Diff: test/yaml_test.dart

Issue 1608993004: Get rid of all the library tags. (Closed) Base URL: git@github.com:dart-lang/yaml@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
« no previous file with comments | « test/yaml_node_wrapper_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 yaml.test;
6
7 import 'package:test/test.dart'; 5 import 'package:test/test.dart';
8 import 'package:yaml/yaml.dart'; 6 import 'package:yaml/yaml.dart';
9 7
10 import 'utils.dart'; 8 import 'utils.dart';
11 9
12 main() { 10 main() {
13 var infinity = double.parse("Infinity"); 11 var infinity = double.parse("Infinity");
14 var nan = double.parse("NaN"); 12 var nan = double.parse("NaN");
15 13
16 group('has a friendly error message for', () { 14 group('has a friendly error message for', () {
(...skipping 1859 matching lines...) Expand 10 before | Expand all | Expand 10 after
1876 A null: null 1874 A null: null
1877 Also a null: # Empty 1875 Also a null: # Empty
1878 Not a null: "" 1876 Not a null: ""
1879 Booleans: [ true, True, false, FALSE ] 1877 Booleans: [ true, True, false, FALSE ]
1880 Integers: [ 0, 0o7, 0x3A, -19 ] 1878 Integers: [ 0, 0o7, 0x3A, -19 ]
1881 Floats: [ 0., -0.0, .5, +12e03, -2E+05 ] 1879 Floats: [ 0., -0.0, .5, +12e03, -2E+05 ]
1882 Also floats: [ .inf, -.Inf, +.INF, .NAN ]'''); 1880 Also floats: [ .inf, -.Inf, +.INF, .NAN ]''');
1883 }); 1881 });
1884 }); 1882 });
1885 } 1883 }
OLDNEW
« no previous file with comments | « test/yaml_node_wrapper_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698