| 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 library pub_tests; | 5 library pub_tests; |
| 6 | 6 |
| 7 import 'dart:io'; | |
| 8 | |
| 9 import '../../descriptor.dart' as d; | 7 import '../../descriptor.dart' as d; |
| 10 import '../../test_pub.dart'; | 8 import '../../test_pub.dart'; |
| 11 | 9 |
| 12 main() { | 10 main() { |
| 13 initConfig(); | 11 initConfig(); |
| 14 integration("updates locked Git packages", () { | 12 integration("updates locked Git packages", () { |
| 15 ensureGit(); | 13 ensureGit(); |
| 16 | 14 |
| 17 d.git('foo.git', [ | 15 d.git('foo.git', [ |
| 18 d.libDir('foo'), | 16 d.libDir('foo'), |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 d.dir(packagesPath, [ | 53 d.dir(packagesPath, [ |
| 56 d.dir('foo', [ | 54 d.dir('foo', [ |
| 57 d.file('foo.dart', 'main() => "foo 2";') | 55 d.file('foo.dart', 'main() => "foo 2";') |
| 58 ]), | 56 ]), |
| 59 d.dir('bar', [ | 57 d.dir('bar', [ |
| 60 d.file('bar.dart', 'main() => "bar 2";') | 58 d.file('bar.dart', 'main() => "bar 2";') |
| 61 ]) | 59 ]) |
| 62 ]).validate(); | 60 ]).validate(); |
| 63 }); | 61 }); |
| 64 } | 62 } |
| OLD | NEW |