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

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

Issue 18356011: Rename "pathos" package to "path". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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
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 'dart:async'; 5 import 'dart:async';
6 import 'dart:json' as json; 6 import 'dart:json' as json;
7 7
8 import 'package:http/http.dart' as http; 8 import 'package:http/http.dart' as http;
9 import 'package:http/testing.dart'; 9 import 'package:http/testing.dart';
10 import 'package:pathos/path.dart' as path; 10 import 'package:path/path.dart' as path;
11 import 'package:scheduled_test/scheduled_test.dart'; 11 import 'package:scheduled_test/scheduled_test.dart';
12 12
13 import '../../lib/src/entrypoint.dart'; 13 import '../../lib/src/entrypoint.dart';
14 import '../../lib/src/validator.dart'; 14 import '../../lib/src/validator.dart';
15 import '../../lib/src/validator/dependency.dart'; 15 import '../../lib/src/validator/dependency.dart';
16 import '../descriptor.dart' as d; 16 import '../descriptor.dart' as d;
17 import '../test_pub.dart'; 17 import '../test_pub.dart';
18 import 'utils.dart'; 18 import 'utils.dart';
19 19
20 Validator dependency(Entrypoint entrypoint) => 20 Validator dependency(Entrypoint entrypoint) =>
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 d.dir(appPath, [ 242 d.dir(appPath, [
243 d.libPubspec("test_pkg", "1.0.0", deps: [ 243 d.libPubspec("test_pkg", "1.0.0", deps: [
244 {'hosted': {'name': 'test_pkg', 'version': '>=1.0.0'}} 244 {'hosted': {'name': 'test_pkg', 'version': '>=1.0.0'}}
245 ]) 245 ])
246 ]).create(); 246 ]).create();
247 247
248 expectValidationWarning(dependency); 248 expectValidationWarning(dependency);
249 }); 249 });
250 }); 250 });
251 } 251 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698