| 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 'package:path/path.dart' as path; | 7 import 'package:path/path.dart' as path; |
| 10 | 8 |
| 11 import '../descriptor.dart' as d; | 9 import '../descriptor.dart' as d; |
| 12 import '../test_pub.dart'; | 10 import '../test_pub.dart'; |
| 13 | 11 |
| 14 main() { | 12 main() { |
| 15 initConfig(); | 13 initConfig(); |
| 16 integration('replaces a broken "packages" symlink', () { | 14 integration('replaces a broken "packages" symlink', () { |
| 17 d.dir(appPath, [ | 15 d.dir(appPath, [ |
| 18 d.appPubspec(), | 16 d.appPubspec(), |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 d.dir("bin", [ | 50 d.dir("bin", [ |
| 53 d.dir("packages", [ | 51 d.dir("packages", [ |
| 54 d.dir("myapp", [ | 52 d.dir("myapp", [ |
| 55 d.file('foo.dart', 'main() => "foo";') | 53 d.file('foo.dart', 'main() => "foo";') |
| 56 ]) | 54 ]) |
| 57 ]) | 55 ]) |
| 58 ]) | 56 ]) |
| 59 ]).validate(); | 57 ]).validate(); |
| 60 }); | 58 }); |
| 61 } | 59 } |
| OLD | NEW |