OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 library pub_tests; | |
6 | |
7 import 'package:path/path.dart' as path; | |
8 | |
9 import '../descriptor.dart' as d; | |
10 import '../test_pub.dart'; | |
11 | |
12 main() { | |
13 initConfig(); | |
14 integration('replaces a broken "packages" symlink', () { | |
15 d.dir(appPath, [ | |
16 d.appPubspec(), | |
17 d.libDir('foo'), | |
18 d.dir("bin") | |
19 ]).create(); | |
20 | |
21 // Create a broken "packages" symlink in "bin". | |
22 scheduleSymlink("nonexistent", path.join(appPath, "packages")); | |
23 | |
24 pubGet(); | |
25 | |
26 d.dir(appPath, [ | |
27 d.dir("bin", [ | |
28 d.dir("packages", [ | |
29 d.dir("myapp", [ | |
30 d.file('foo.dart', 'main() => "foo";') | |
31 ]) | |
32 ]) | |
33 ]) | |
34 ]).validate(); | |
35 }); | |
36 | |
37 integration('replaces a broken secondary "packages" symlink', () { | |
38 d.dir(appPath, [ | |
39 d.appPubspec(), | |
40 d.libDir('foo'), | |
41 d.dir("bin") | |
42 ]).create(); | |
43 | |
44 // Create a broken "packages" symlink in "bin". | |
45 scheduleSymlink("nonexistent", path.join(appPath, "bin", "packages")); | |
46 | |
47 pubGet(); | |
48 | |
49 d.dir(appPath, [ | |
50 d.dir("bin", [ | |
51 d.dir("packages", [ | |
52 d.dir("myapp", [ | |
53 d.file('foo.dart', 'main() => "foo";') | |
54 ]) | |
55 ]) | |
56 ]) | |
57 ]).validate(); | |
58 }); | |
59 } | |
OLD | NEW |