| 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'; | 7 import 'dart:io'; |
| 8 | 8 |
| 9 import 'package:scheduled_test/scheduled_test.dart'; | 9 import 'package:scheduled_test/scheduled_test.dart'; |
| 10 | 10 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 ]).validate(); | 35 ]).validate(); |
| 36 | 36 |
| 37 d.dir(packagesPath, [ | 37 d.dir(packagesPath, [ |
| 38 d.dir('foo', [ | 38 d.dir('foo', [ |
| 39 d.file('foo.dart', 'main() => "foo";') | 39 d.file('foo.dart', 'main() => "foo";') |
| 40 ]) | 40 ]) |
| 41 ]).validate(); | 41 ]).validate(); |
| 42 }); | 42 }); |
| 43 }); | 43 }); |
| 44 } | 44 } |
| OLD | NEW |