OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS d.file | 1 // Copyright (c) 2012, 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 library pub_tests; | 5 library pub_tests; |
6 | 6 |
7 import 'dart:io'; | 7 import 'dart:io'; |
8 | 8 |
9 import '../../../../pkg/scheduled_test/lib/scheduled_test.dart'; | 9 import 'package:scheduled_test/scheduled_test.dart'; |
10 | 10 |
11 import '../descriptor.dart' as d; | 11 import '../descriptor.dart' as d; |
12 import '../test_pub.dart'; | 12 import '../test_pub.dart'; |
13 | 13 |
14 main() { | 14 main() { |
15 initConfig(); | 15 initConfig(); |
16 | 16 |
17 group('requires', () { | 17 group('requires', () { |
18 integration('a pubspec', () { | 18 integration('a pubspec', () { |
19 d.dir(appPath, []).create(); | 19 d.dir(appPath, []).create(); |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 d.dir("packages", [ | 242 d.dir("packages", [ |
243 d.dir("myapp", [ | 243 d.dir("myapp", [ |
244 d.file('foo.dart', 'main() => "foo";') | 244 d.file('foo.dart', 'main() => "foo";') |
245 ]) | 245 ]) |
246 ]) | 246 ]) |
247 ]) | 247 ]) |
248 ]).validate(); | 248 ]).validate(); |
249 }); | 249 }); |
250 }); | 250 }); |
251 } | 251 } |
OLD | NEW |