| 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 initConfig(); | |
| 12 integration('defaults to the package name if the script is omitted', () { | 11 integration('defaults to the package name if the script is omitted', () { |
| 13 servePackages((builder) { | 12 servePackages((builder) { |
| 14 builder.serve("foo", "1.0.0", contents: [ | 13 builder.serve("foo", "1.0.0", contents: [ |
| 15 d.dir("bin", [ | 14 d.dir("bin", [ |
| 16 d.file("foo.dart", "main(args) => print('foo');") | 15 d.file("foo.dart", "main(args) => print('foo');") |
| 17 ]) | 16 ]) |
| 18 ]); | 17 ]); |
| 19 }); | 18 }); |
| 20 | 19 |
| 21 schedulePub(args: ["global", "activate", "foo"]); | 20 schedulePub(args: ["global", "activate", "foo"]); |
| 22 | 21 |
| 23 var pub = pubRun(global: true, args: ["foo"]); | 22 var pub = pubRun(global: true, args: ["foo"]); |
| 24 pub.stdout.expect("foo"); | 23 pub.stdout.expect("foo"); |
| 25 pub.shouldExit(); | 24 pub.shouldExit(); |
| 26 }); | 25 }); |
| 27 } | 26 } |
| OLD | NEW |