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