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 script in a git package', () { | 9 integration('runs a script in a git package', () { |
11 ensureGit(); | 10 ensureGit(); |
12 | 11 |
13 d.git('foo.git', [ | 12 d.git('foo.git', [ |
14 d.libPubspec("foo", "1.0.0"), | 13 d.libPubspec("foo", "1.0.0"), |
15 d.dir("bin", [ | 14 d.dir("bin", [ |
16 d.file("foo.dart", "main() => print('ok');") | 15 d.file("foo.dart", "main() => print('ok');") |
17 ]) | 16 ]) |
18 ]).create(); | 17 ]).create(); |
19 | 18 |
20 schedulePub(args: ["global", "activate", "-sgit", "../foo.git"]); | 19 schedulePub(args: ["global", "activate", "-sgit", "../foo.git"]); |
21 | 20 |
22 var pub = pubRun(global: true, args: ["foo"]); | 21 var pub = pubRun(global: true, args: ["foo"]); |
23 pub.stdout.expect("ok"); | 22 pub.stdout.expect("ok"); |
24 pub.shouldExit(); | 23 pub.shouldExit(); |
25 }); | 24 }); |
26 } | 25 } |
OLD | NEW |