| OLD | NEW |
| 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; | 1 import '../../descriptor.dart' as d; |
| 6 import '../../test_pub.dart'; | 2 import '../../test_pub.dart'; |
| 7 | |
| 8 main() { | 3 main() { |
| 9 initConfig(); | 4 initConfig(); |
| 10 integration('activates a package from a Git repo', () { | 5 integration('activates a package from a Git repo', () { |
| 11 ensureGit(); | 6 ensureGit(); |
| 12 | 7 d.git( |
| 13 d.git('foo.git', [ | 8 'foo.git', |
| 14 d.libPubspec("foo", "1.0.0"), | 9 [ |
| 15 d.dir("bin", [ | 10 d.libPubspec("foo", "1.0.0"), |
| 16 d.file("foo.dart", "main() => print('ok');") | 11 d.dir("bin", [d.file("foo.dart", "main() => print('ok');")])]).creat
e(); |
| 17 ]) | 12 schedulePub(args: ["global", "activate", "-sgit", "../foo.git"], output: ''' |
| 18 ]).create(); | |
| 19 | |
| 20 schedulePub(args: ["global", "activate", "-sgit", "../foo.git"], | |
| 21 output: ''' | |
| 22 Resolving dependencies... | 13 Resolving dependencies... |
| 23 + foo 1.0.0 from git ../foo.git | 14 + foo 1.0.0 from git ../foo.git |
| 24 Precompiling executables... | 15 Precompiling executables... |
| 25 Loading source assets... | 16 Loading source assets... |
| 26 Precompiled foo:foo. | 17 Precompiled foo:foo. |
| 27 Activated foo 1.0.0 from Git repository "../foo.git".'''); | 18 Activated foo 1.0.0 from Git repository "../foo.git".'''); |
| 28 }); | 19 }); |
| 29 } | 20 } |
| OLD | NEW |