| 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 '../descriptor.dart' as d; | 5 import '../descriptor.dart' as d; |
| 6 import '../test_pub.dart'; | 6 import '../test_pub.dart'; |
| 7 | 7 |
| 8 main() { | 8 main() { |
| 9 initConfig(); | |
| 10 integration('runs a named Dart application in a dev dependency', () { | 9 integration('runs a named Dart application in a dev dependency', () { |
| 11 d.dir("foo", [ | 10 d.dir("foo", [ |
| 12 d.libPubspec("foo", "1.0.0"), | 11 d.libPubspec("foo", "1.0.0"), |
| 13 d.dir("bin", [ | 12 d.dir("bin", [ |
| 14 d.file("bar.dart", "main() => print('foobar');") | 13 d.file("bar.dart", "main() => print('foobar');") |
| 15 ]) | 14 ]) |
| 16 ]).create(); | 15 ]).create(); |
| 17 | 16 |
| 18 d.dir(appPath, [ | 17 d.dir(appPath, [ |
| 19 d.pubspec({ | 18 d.pubspec({ |
| 20 "name": "myapp", | 19 "name": "myapp", |
| 21 "dev_dependencies": { | 20 "dev_dependencies": { |
| 22 "foo": {"path": "../foo"} | 21 "foo": {"path": "../foo"} |
| 23 } | 22 } |
| 24 }) | 23 }) |
| 25 ]).create(); | 24 ]).create(); |
| 26 | 25 |
| 27 pubGet(); | 26 pubGet(); |
| 28 | 27 |
| 29 var pub = pubRun(args: ["foo:bar"]); | 28 var pub = pubRun(args: ["foo:bar"]); |
| 30 pub.stdout.expect("foobar"); | 29 pub.stdout.expect("foobar"); |
| 31 pub.shouldExit(); | 30 pub.shouldExit(); |
| 32 }); | 31 }); |
| 33 } | 32 } |
| OLD | NEW |