| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 '../descriptor.dart' as d; | 7 import '../descriptor.dart' as d; |
| 8 import '../test_pub.dart'; | 8 import '../test_pub.dart'; |
| 9 import 'utils.dart'; | 9 import 'utils.dart'; |
| 10 | 10 |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 d.dir('lib', [ | 201 d.dir('lib', [ |
| 202 d.file("myapp.dart", transformer(['foo.dart'])), | 202 d.file("myapp.dart", transformer(['foo.dart'])), |
| 203 d.file("foo.dart", "import 'bar.dart';"), | 203 d.file("foo.dart", "import 'bar.dart';"), |
| 204 d.file("bar.dart", "import 'myapp.dart';"), | 204 d.file("bar.dart", "import 'myapp.dart';"), |
| 205 ]) | 205 ]) |
| 206 ]).create(); | 206 ]).create(); |
| 207 | 207 |
| 208 expectDependencies({'myapp': []}); | 208 expectDependencies({'myapp': []}); |
| 209 }); | 209 }); |
| 210 } | 210 } |
| OLD | NEW |