| 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'; | 7 import 'dart:io'; |
| 8 | 8 |
| 9 import '../../test_pub.dart'; | 9 import '../../test_pub.dart'; |
| 10 import '../../../../../pkg/unittest/lib/unittest.dart'; | |
| 11 | 10 |
| 12 main() { | 11 main() { |
| 13 test("updates one locked Git package but no others", () { | 12 integration("updates one locked Git package but no others", () { |
| 14 ensureGit(); | 13 ensureGit(); |
| 15 | 14 |
| 16 git('foo.git', [ | 15 git('foo.git', [ |
| 17 libDir('foo'), | 16 libDir('foo'), |
| 18 libPubspec('foo', '1.0.0') | 17 libPubspec('foo', '1.0.0') |
| 19 ]).scheduleCreate(); | 18 ]).scheduleCreate(); |
| 20 | 19 |
| 21 git('bar.git', [ | 20 git('bar.git', [ |
| 22 libDir('bar'), | 21 libDir('bar'), |
| 23 libPubspec('bar', '1.0.0') | 22 libPubspec('bar', '1.0.0') |
| (...skipping 27 matching lines...) Expand all Loading... |
| 51 output: new RegExp(r"Dependencies updated!$")); | 50 output: new RegExp(r"Dependencies updated!$")); |
| 52 | 51 |
| 53 dir(packagesPath, [ | 52 dir(packagesPath, [ |
| 54 dir('foo', [ | 53 dir('foo', [ |
| 55 file('foo.dart', 'main() => "foo 2";') | 54 file('foo.dart', 'main() => "foo 2";') |
| 56 ]), | 55 ]), |
| 57 dir('bar', [ | 56 dir('bar', [ |
| 58 file('bar.dart', 'main() => "bar";') | 57 file('bar.dart', 'main() => "bar";') |
| 59 ]) | 58 ]) |
| 60 ]).scheduleValidate(); | 59 ]).scheduleValidate(); |
| 61 | |
| 62 run(); | |
| 63 }); | 60 }); |
| 64 } | 61 } |
| OLD | NEW |