| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.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 d.file. | 3 // BSD-style license that can be found in the LICENSE d.file. |
| 4 | 4 |
| 5 import 'package:path/path.dart' as path; | |
| 6 | |
| 7 import '../../../lib/src/exit_codes.dart' as exit_codes; | |
| 8 import '../../descriptor.dart' as d; | 5 import '../../descriptor.dart' as d; |
| 9 import '../../test_pub.dart'; | 6 import '../../test_pub.dart'; |
| 10 | 7 |
| 11 main() { | 8 main() { |
| 12 initConfig(); | 9 initConfig(); |
| 13 integration("can use relative path", () { | 10 integration("can use relative path", () { |
| 14 d.dir("foo", [ | 11 d.dir("foo", [ |
| 15 d.libDir("foo"), | 12 d.libDir("foo"), |
| 16 d.libPubspec("foo", "0.0.1") | 13 d.libPubspec("foo", "0.0.1") |
| 17 ]).create(); | 14 ]).create(); |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 d.dir(packagesPath, [ | 53 d.dir(packagesPath, [ |
| 57 d.dir("foo", [ | 54 d.dir("foo", [ |
| 58 d.file("foo.dart", 'main() => "foo";') | 55 d.file("foo.dart", 'main() => "foo";') |
| 59 ]), | 56 ]), |
| 60 d.dir("bar", [ | 57 d.dir("bar", [ |
| 61 d.file("bar.dart", 'main() => "bar";') | 58 d.file("bar.dart", 'main() => "bar";') |
| 62 ]) | 59 ]) |
| 63 ]).validate(); | 60 ]).validate(); |
| 64 }); | 61 }); |
| 65 } | 62 } |
| OLD | NEW |