OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 import '../../descriptor.dart' as d; | |
6 import '../../test_pub.dart'; | |
7 | |
8 main() { | |
9 initConfig(); | |
10 integration('activates a package from a git repo', () { | |
11 ensureGit(); | |
12 | |
13 d.git('foo.git', [ | |
14 d.libPubspec('foo', '1.0.0'), | |
15 d.dir("bin", [ | |
16 d.file("foo.dart", "main() => print('ok');") | |
17 ]) | |
18 ]).create(); | |
19 | |
20 schedulePub(args: ["global", "activate", "-sgit", "foo", "../foo.git"], | |
nweiz
2014/07/31 20:01:54
Now I'm really confused. Where's the ref? What's t
Bob Nystrom
2014/08/04 23:41:51
Killing git support in this patch.
| |
21 output: """ | |
22 Resolving dependencies... | |
23 Activated foo 1.0.0."""); | |
24 }); | |
25 } | |
OLD | NEW |