| 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 | 10 |
| 11 main() { | 11 main() { |
| 12 integration("doesn't update one locked Git package's dependencies if it's " | 12 integration("doesn't update one locked Git package's dependencies if it's " |
| 13 "not necessary", () { | 13 "not necessary", () { |
| 14 ensureGit(); | 14 ensureGit(); |
| 15 | 15 |
| 16 git('foo.git', [ | 16 git('foo.git', [ |
| 17 libDir('foo'), | 17 libDir('foo'), |
| 18 libPubspec("foo", "1.0.0", [{"git": "../foo-dep.git"}]) | 18 libPubspec("foo", "1.0.0", deps: [{"git": "../foo-dep.git"}]) |
| 19 ]).scheduleCreate(); | 19 ]).scheduleCreate(); |
| 20 | 20 |
| 21 git('foo-dep.git', [ | 21 git('foo-dep.git', [ |
| 22 libDir('foo-dep'), | 22 libDir('foo-dep'), |
| 23 libPubspec('foo-dep', '1.0.0') | 23 libPubspec('foo-dep', '1.0.0') |
| 24 ]).scheduleCreate(); | 24 ]).scheduleCreate(); |
| 25 | 25 |
| 26 appDir([{"git": "../foo.git"}]).scheduleCreate(); | 26 appDir([{"git": "../foo.git"}]).scheduleCreate(); |
| 27 | 27 |
| 28 schedulePub(args: ['install'], | 28 schedulePub(args: ['install'], |
| 29 output: new RegExp(r"Dependencies installed!$")); | 29 output: new RegExp(r"Dependencies installed!$")); |
| 30 | 30 |
| 31 dir(packagesPath, [ | 31 dir(packagesPath, [ |
| 32 dir('foo', [ | 32 dir('foo', [ |
| 33 file('foo.dart', 'main() => "foo";') | 33 file('foo.dart', 'main() => "foo";') |
| 34 ]), | 34 ]), |
| 35 dir('foo-dep', [ | 35 dir('foo-dep', [ |
| 36 file('foo-dep.dart', 'main() => "foo-dep";') | 36 file('foo-dep.dart', 'main() => "foo-dep";') |
| 37 ]) | 37 ]) |
| 38 ]).scheduleValidate(); | 38 ]).scheduleValidate(); |
| 39 | 39 |
| 40 git('foo.git', [ | 40 git('foo.git', [ |
| 41 libDir('foo', 'foo 2'), | 41 libDir('foo', 'foo 2'), |
| 42 libPubspec("foo", "1.0.0", [{"git": "../foo-dep.git"}]) | 42 libPubspec("foo", "1.0.0", deps: [{"git": "../foo-dep.git"}]) |
| 43 ]).scheduleCreate(); | 43 ]).scheduleCreate(); |
| 44 | 44 |
| 45 git('foo-dep.git', [ | 45 git('foo-dep.git', [ |
| 46 libDir('foo-dep', 'foo-dep 2'), | 46 libDir('foo-dep', 'foo-dep 2'), |
| 47 libPubspec('foo-dep', '1.0.0') | 47 libPubspec('foo-dep', '1.0.0') |
| 48 ]).scheduleCommit(); | 48 ]).scheduleCommit(); |
| 49 | 49 |
| 50 schedulePub(args: ['update', 'foo'], | 50 schedulePub(args: ['update', 'foo'], |
| 51 output: new RegExp(r"Dependencies updated!$")); | 51 output: new RegExp(r"Dependencies updated!$")); |
| 52 | 52 |
| 53 dir(packagesPath, [ | 53 dir(packagesPath, [ |
| 54 dir('foo', [ | 54 dir('foo', [ |
| 55 file('foo.dart', 'main() => "foo 2";') | 55 file('foo.dart', 'main() => "foo 2";') |
| 56 ]), | 56 ]), |
| 57 dir('foo-dep', [ | 57 dir('foo-dep', [ |
| 58 file('foo-dep.dart', 'main() => "foo-dep";') | 58 file('foo-dep.dart', 'main() => "foo-dep";') |
| 59 ]), | 59 ]), |
| 60 ]).scheduleValidate(); | 60 ]).scheduleValidate(); |
| 61 }); | 61 }); |
| 62 } | 62 } |
| OLD | NEW |