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

Side by Side Diff: sdk/lib/_internal/pub/test/deps_test.dart

Issue 296823003: Fix some pub test ordering churn caused by YAML changes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 import 'package:scheduled_test/scheduled_test.dart'; 5 import 'package:scheduled_test/scheduled_test.dart';
6 6
7 import 'descriptor.dart' as d; 7 import 'descriptor.dart' as d;
8 import 'test_pub.dart'; 8 import 'test_pub.dart';
9 9
10 main() { 10 main() {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 ]).create(); 61 ]).create();
62 }); 62 });
63 63
64 integration("lists dependencies in compact form", () { 64 integration("lists dependencies in compact form", () {
65 pubGet(); 65 pubGet();
66 schedulePub(args: ['deps', '-s', 'compact'], output: ''' 66 schedulePub(args: ['deps', '-s', 'compact'], output: '''
67 myapp 0.0.0 67 myapp 0.0.0
68 68
69 dependencies: 69 dependencies:
70 - from_path 1.2.3 70 - from_path 1.2.3
71 - normal 1.2.3 [circular_a transitive] 71 - normal 1.2.3 [transitive circular_a]
72 - overridden 2.0.0 72 - overridden 2.0.0
73 73
74 dev dependencies: 74 dev dependencies:
75 - unittest 1.2.3 [shared] 75 - unittest 1.2.3 [shared]
76 76
77 dependency overrides: 77 dependency overrides:
78 - overridden 2.0.0 78 - overridden 2.0.0
79 - override_only 1.2.3 79 - override_only 1.2.3
80 80
81 transitive dependencies: 81 transitive dependencies:
82 - circular_a 1.2.3 [circular_b] 82 - circular_a 1.2.3 [circular_b]
83 - circular_b 1.2.3 [circular_a] 83 - circular_b 1.2.3 [circular_a]
84 - other 1.0.0 84 - other 1.0.0
85 - shared 1.2.3 [other] 85 - shared 1.2.3 [other]
86 - transitive 1.2.3 [shared] 86 - transitive 1.2.3 [shared]
87 '''); 87 ''');
88 }); 88 });
89 89
90 integration("lists dependencies in list form", () { 90 integration("lists dependencies in list form", () {
91 pubGet(); 91 pubGet();
92 schedulePub(args: ['deps', '--style', 'list'], output: ''' 92 schedulePub(args: ['deps', '--style', 'list'], output: '''
93 myapp 0.0.0 93 myapp 0.0.0
94 94
95 dependencies: 95 dependencies:
96 - from_path 1.2.3 96 - from_path 1.2.3
97 - normal 1.2.3
98 - transitive any
99 - circular_a any
97 - overridden 2.0.0 100 - overridden 2.0.0
98 - normal 1.2.3
99 - circular_a any
100 - transitive any
101 101
102 dev dependencies: 102 dev dependencies:
103 - unittest 1.2.3 103 - unittest 1.2.3
104 - shared any 104 - shared any
105 105
106 dependency overrides: 106 dependency overrides:
107 - overridden 2.0.0
107 - override_only 1.2.3 108 - override_only 1.2.3
108 - overridden 2.0.0
109 109
110 transitive dependencies: 110 transitive dependencies:
111 - circular_a 1.2.3 111 - circular_a 1.2.3
112 - circular_b any 112 - circular_b any
113 - circular_b 1.2.3 113 - circular_b 1.2.3
114 - circular_a any 114 - circular_a any
115 - other 1.0.0 115 - other 1.0.0
116 - shared 1.2.3 116 - shared 1.2.3
117 - other any 117 - other any
118 - transitive 1.2.3 118 - transitive 1.2.3
(...skipping 13 matching lines...) Expand all
132 | '-- transitive 1.2.3 132 | '-- transitive 1.2.3
133 | '-- shared... 133 | '-- shared...
134 |-- overridden 2.0.0 134 |-- overridden 2.0.0
135 |-- override_only 1.2.3 135 |-- override_only 1.2.3
136 '-- unittest 1.2.3 136 '-- unittest 1.2.3
137 '-- shared 1.2.3 137 '-- shared 1.2.3
138 '-- other 1.0.0 138 '-- other 1.0.0
139 '''); 139 ''');
140 }); 140 });
141 } 141 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698