| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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:pub/src/exit_codes.dart' as exit_codes; | 5 import 'package:pub/src/exit_codes.dart' as exit_codes; |
| 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() { |
| 11 integration('Errors if the executable is in a subdirectory in a ' | 11 integration('Errors if the executable is in a subdirectory in a ' |
| 12 'dependency.', () { | 12 'dependency.', () { |
| 13 d.dir("foo", [ | 13 d.dir("foo", [ |
| 14 d.libPubspec("foo", "1.0.0") | 14 d.libPubspec("foo", "1.0.0") |
| 15 ]).create(); | 15 ]).create(); |
| 16 | 16 |
| 17 d.dir(appPath, [ | 17 d.dir(appPath, [ |
| 18 d.appPubspec({ | 18 d.appPubspec({ |
| 19 "foo": {"path": "../foo"} | 19 "foo": {"path": "../foo"} |
| 20 }) | 20 }) |
| 21 ]).create(); | 21 ]).create(); |
| 22 | 22 |
| 23 schedulePub(args: ["run", "foo:sub/dir"], | 23 schedulePub(args: ["run", "foo:sub/dir"], |
| 24 error: """ | 24 error: """ |
| 25 Cannot run an executable in a subdirectory of a dependency. | 25 Cannot run an executable in a subdirectory of a dependency. |
| 26 | 26 |
| 27 Usage: pub run <executable> [args...] | 27 Usage: pub run <executable> [args...] |
| 28 -h, --help Print this usage information. | 28 -h, --help Print this usage information. |
| 29 --mode Mode to run transformers in. | 29 -c, --[no-]checked Enable runtime type checks and assertions. |
| 30 (defaults to "release" for dependencies, "debug" for entrypoint) | 30 --mode Mode to run transformers in. |
| 31 (defaults to "release" for dependencies, "debug" for entry
point) |
| 31 | 32 |
| 32 Run "pub help" to see global options. | 33 Run "pub help" to see global options. |
| 33 """, | 34 """, |
| 34 exitCode: exit_codes.USAGE); | 35 exitCode: exit_codes.USAGE); |
| 35 }); | 36 }); |
| 36 } | 37 } |
| OLD | NEW |