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 'package:scheduled_test/scheduled_test.dart'; | 7 import 'package:scheduled_test/scheduled_test.dart'; |
8 | 8 |
9 import '../../descriptor.dart' as d; | 9 import '../../descriptor.dart' as d; |
10 import '../../test_pub.dart'; | 10 import '../../test_pub.dart'; |
11 | 11 |
12 main() { | 12 main() { |
13 initConfig(); | |
14 integration('checks out and upgrades a package from Git', () { | 13 integration('checks out and upgrades a package from Git', () { |
15 ensureGit(); | 14 ensureGit(); |
16 | 15 |
17 d.git('foo.git', [ | 16 d.git('foo.git', [ |
18 d.libDir('foo'), | 17 d.libDir('foo'), |
19 d.libPubspec('foo', '1.0.0') | 18 d.libPubspec('foo', '1.0.0') |
20 ]).create(); | 19 ]).create(); |
21 | 20 |
22 d.appDir({"foo": {"git": "../foo.git"}}).create(); | 21 d.appDir({"foo": {"git": "../foo.git"}}).create(); |
23 | 22 |
(...skipping 29 matching lines...) Expand all Loading... |
53 ]) | 52 ]) |
54 ]).validate(); | 53 ]).validate(); |
55 | 54 |
56 d.dir(packagesPath, [ | 55 d.dir(packagesPath, [ |
57 d.dir('foo', [ | 56 d.dir('foo', [ |
58 d.file('foo.dart', 'main() => "foo 2";') | 57 d.file('foo.dart', 'main() => "foo 2";') |
59 ]) | 58 ]) |
60 ]).validate(); | 59 ]).validate(); |
61 }); | 60 }); |
62 } | 61 } |
OLD | NEW |