| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 integration('checks out a package at a specific branch from Git', () { | 9 integration('checks out a package at a specific branch from Git', () { |
| 10 ensureGit(); | 10 ensureGit(); |
| 11 | 11 |
| 12 var repo = d.git('foo.git', [ | 12 var repo = d.git('foo.git', [ |
| 13 d.libDir('foo', 'foo 1'), | 13 d.libDir('foo', 'foo 1'), |
| 14 d.libPubspec('foo', '1.0.0') | 14 d.libPubspec('foo', '1.0.0') |
| 15 ]); | 15 ]); |
| 16 repo.create(); | 16 repo.create(); |
| 17 repo.runGit(["branch", "old"]); | 17 repo.runGit(["branch", "old"]); |
| 18 | 18 |
| 19 d.git('foo.git', [ | 19 d.git('foo.git', [ |
| 20 d.libDir('foo', 'foo 2'), | 20 d.libDir('foo', 'foo 2'), |
| 21 d.libPubspec('foo', '1.0.0') | 21 d.libPubspec('foo', '1.0.0') |
| 22 ]).commit(); | 22 ]).commit(); |
| 23 | 23 |
| 24 d.appDir({ | 24 d.appDir({ |
| 25 "foo": {"git": {"url": "../foo.git", "ref": "old"}} | 25 "foo": {"git": {"url": "../foo.git", "ref": "old"}} |
| 26 }).create(); | 26 }).create(); |
| 27 | 27 |
| 28 pubGet(); | 28 pubGet(args: ["--packages-dir"]); |
| 29 | 29 |
| 30 d.dir(packagesPath, [ | 30 d.dir(packagesPath, [ |
| 31 d.dir('foo', [ | 31 d.dir('foo', [ |
| 32 d.file('foo.dart', 'main() => "foo 1";') | 32 d.file('foo.dart', 'main() => "foo 1";') |
| 33 ]) | 33 ]) |
| 34 ]).validate(); | 34 ]).validate(); |
| 35 }); | 35 }); |
| 36 } | 36 } |
| OLD | NEW |