| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 import '../../../../../pkg/path/lib/path.dart' as path; | 5 import '../../../../../pkg/pathos/lib/path.dart' as path; |
| 6 | 6 |
| 7 import '../../test_pub.dart'; | 7 import '../../test_pub.dart'; |
| 8 | 8 |
| 9 main() { | 9 main() { |
| 10 initConfig(); | 10 initConfig(); |
| 11 integration('path dependency with absolute path', () { | 11 integration('path dependency with absolute path', () { |
| 12 dir('foo', [ | 12 dir('foo', [ |
| 13 libDir('foo'), | 13 libDir('foo'), |
| 14 libPubspec('foo', '0.0.1') | 14 libPubspec('foo', '0.0.1') |
| 15 ]).scheduleCreate(); | 15 ]).scheduleCreate(); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 37 dir("moved").scheduleCreate(); | 37 dir("moved").scheduleCreate(); |
| 38 scheduleRename(packagesPath, "moved/packages"); | 38 scheduleRename(packagesPath, "moved/packages"); |
| 39 | 39 |
| 40 dir("moved/packages", [ | 40 dir("moved/packages", [ |
| 41 dir("foo", [ | 41 dir("foo", [ |
| 42 file("foo.dart", 'main() => "foo";') | 42 file("foo.dart", 'main() => "foo";') |
| 43 ]) | 43 ]) |
| 44 ]).scheduleValidate(); | 44 ]).scheduleValidate(); |
| 45 }); | 45 }); |
| 46 } | 46 } |
| OLD | NEW |