| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 library pub_tests; | |
| 6 | |
| 7 import '../../lib/src/exit_codes.dart' as exit_codes; | |
| 8 import '../descriptor.dart' as d; | |
| 9 import '../test_pub.dart'; | |
| 10 | |
| 11 main() { | |
| 12 initConfig(); | |
| 13 | |
| 14 forBothPubGetAndUpgrade((command) { | |
| 15 integration('fails gracefully if the url does not resolve', () { | |
| 16 d.dir(appPath, [d.appPubspec({ | |
| 17 "foo": { | |
| 18 "hosted": { | |
| 19 "name": "foo", | |
| 20 "url": "http://pub.invalid" | |
| 21 } | |
| 22 } | |
| 23 })]).create(); | |
| 24 | |
| 25 pubCommand( | |
| 26 command, | |
| 27 error: 'Could not resolve URL "http://pub.invalid".', | |
| 28 exitCode: exit_codes.UNAVAILABLE); | |
| 29 }); | |
| 30 }); | |
| 31 } | |
| OLD | NEW |