| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.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 d.file. | 3 // BSD-style license that can be found in the LICENSE d.file. |
| 4 | 4 |
| 5 import 'dart:io'; | |
| 6 | |
| 7 import 'package:path/path.dart' as path; | 5 import 'package:path/path.dart' as path; |
| 8 import 'package:scheduled_test/scheduled_test.dart'; | |
| 9 | 6 |
| 10 import '../../descriptor.dart' as d; | 7 import '../../descriptor.dart' as d; |
| 11 import '../../test_pub.dart'; | 8 import '../../test_pub.dart'; |
| 12 | 9 |
| 13 main() { | 10 main() { |
| 14 initConfig(); | 11 initConfig(); |
| 15 integration('path dependency to non-existent directory', () { | 12 integration('path dependency to non-existent directory', () { |
| 16 var badPath = path.join(sandboxDir, "bad_path"); | 13 var badPath = path.join(sandboxDir, "bad_path"); |
| 17 | 14 |
| 18 d.dir(appPath, [ | 15 d.dir(appPath, [ |
| 19 d.appPubspec({ | 16 d.appPubspec({ |
| 20 "foo": {"path": badPath} | 17 "foo": {"path": badPath} |
| 21 }) | 18 }) |
| 22 ]).create(); | 19 ]).create(); |
| 23 | 20 |
| 24 pubInstall(error: "Could not find package 'foo' at '$badPath'."); | 21 pubInstall(error: "Could not find package 'foo' at '$badPath'."); |
| 25 }); | 22 }); |
| 26 } | 23 } |
| OLD | NEW |