OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012, 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 |
| 3 // BSD-style license that can be found in the LICENSE d.file. |
| 4 |
| 5 library pub_tests; |
| 6 |
| 7 import 'dart:io'; |
| 8 |
| 9 import '../descriptor.dart' as d; |
| 10 import '../test_pub.dart'; |
| 11 |
| 12 main() { |
| 13 initConfig(); |
| 14 integration('fails gracefully on a dependency from an unknown source', () { |
| 15 d.appDir([{"bad": "foo"}]).create(); |
| 16 |
| 17 schedulePub(args: ['install'], |
| 18 error: new RegExp("Package 'myapp' depends on 'foo' from unknown " |
| 19 "source 'bad'.\$"), |
| 20 exitCode: 1); |
| 21 }); |
| 22 |
| 23 integration('fails gracefully on transitive dependency from an unknown ' |
| 24 'source', () { |
| 25 d.dir('foo', [ |
| 26 d.libDir('foo', 'foo 0.0.1'), |
| 27 d.libPubspec('foo', '0.0.1', deps: [{"bad": "bar"}]) |
| 28 ]).create(); |
| 29 |
| 30 d.appDir([{"path": "../foo"}]).create(); |
| 31 |
| 32 schedulePub(args: ['install'], |
| 33 error: new RegExp("Package 'foo' depends on 'bar' from unknown " |
| 34 "source 'bad'.\$"), |
| 35 exitCode: 1); |
| 36 }); |
| 37 } |
OLD | NEW |