| 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('ignores previously activated git commit', | 5 integration('ignores previously activated git commit', () { |
| 11 () { | |
| 12 ensureGit(); | 6 ensureGit(); |
| 13 | 7 d.git('foo.git', [d.libPubspec("foo", "1.0.0")]).create(); |
| 14 d.git('foo.git', [ | 8 schedulePub(args: ["global", "activate", "-sgit", "../foo.git"], output: ''' |
| 15 d.libPubspec("foo", "1.0.0") | |
| 16 ]).create(); | |
| 17 | |
| 18 schedulePub(args: ["global", "activate", "-sgit", "../foo.git"], | |
| 19 output: ''' | |
| 20 Resolving dependencies... | 9 Resolving dependencies... |
| 21 + foo 1.0.0 from git ../foo.git | 10 + foo 1.0.0 from git ../foo.git |
| 22 Precompiling executables... | 11 Precompiling executables... |
| 23 Loading source assets... | 12 Loading source assets... |
| 24 Activated foo 1.0.0 from Git repository "../foo.git".'''); | 13 Activated foo 1.0.0 from Git repository "../foo.git".'''); |
| 25 | 14 d.git('foo.git', [d.libPubspec("foo", "1.0.1")]).commit(); |
| 26 d.git('foo.git', [ | 15 schedulePub(args: ["global", "activate", "-sgit", "../foo.git"], output: ''' |
| 27 d.libPubspec("foo", "1.0.1") | |
| 28 ]).commit(); | |
| 29 | |
| 30 // Activating it again pulls down the latest commit. | |
| 31 schedulePub(args: ["global", "activate", "-sgit", "../foo.git"], | |
| 32 output: ''' | |
| 33 Package foo is currently active from Git repository "../foo.git". | 16 Package foo is currently active from Git repository "../foo.git". |
| 34 Resolving dependencies... | 17 Resolving dependencies... |
| 35 + foo 1.0.1 from git ../foo.git | 18 + foo 1.0.1 from git ../foo.git |
| 36 Precompiling executables... | 19 Precompiling executables... |
| 37 Loading source assets... | 20 Loading source assets... |
| 38 Activated foo 1.0.1 from Git repository "../foo.git".'''); | 21 Activated foo 1.0.1 from Git repository "../foo.git".'''); |
| 39 }); | 22 }); |
| 40 } | 23 } |
| OLD | NEW |