OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS d.file | 1 // Copyright (c) 2014, 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 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:convert'; | 7 import 'dart:convert'; |
8 | 8 |
9 import 'package:scheduled_test/scheduled_stream.dart'; | 9 import 'package:scheduled_test/scheduled_stream.dart'; |
10 | 10 |
(...skipping 20 matching lines...) Expand all Loading... |
31 JSON.encode({ | 31 JSON.encode({ |
32 'package': error.id.package, | 32 'package': error.id.package, |
33 'path': error.id.path | 33 'path': error.id.path |
34 }))); | 34 }))); |
35 }); | 35 }); |
36 } | 36 } |
37 } | 37 } |
38 """; | 38 """; |
39 | 39 |
40 main() { | 40 main() { |
41 initConfig(); | |
42 withBarbackVersions("any", () { | 41 withBarbackVersions("any", () { |
43 integration("AssetNotFoundExceptions are detectable", () { | 42 integration("AssetNotFoundExceptions are detectable", () { |
44 d.dir(appPath, [ | 43 d.dir(appPath, [ |
45 d.pubspec({ | 44 d.pubspec({ |
46 "name": "myapp", | 45 "name": "myapp", |
47 "transformers": ["myapp/src/transformer"] | 46 "transformers": ["myapp/src/transformer"] |
48 }), | 47 }), |
49 d.dir("lib", [d.dir("src", [ | 48 d.dir("lib", [d.dir("src", [ |
50 d.file("transformer.dart", transformer) | 49 d.file("transformer.dart", transformer) |
51 ])]), | 50 ])]), |
(...skipping 10 matching lines...) Expand all Loading... |
62 "path": "nonexistent" | 61 "path": "nonexistent" |
63 })); | 62 })); |
64 endPubServe(); | 63 endPubServe(); |
65 | 64 |
66 // Since the AssetNotFoundException was caught and handled, the server | 65 // Since the AssetNotFoundException was caught and handled, the server |
67 // shouldn't print any error information for it. | 66 // shouldn't print any error information for it. |
68 server.stderr.expect(isDone); | 67 server.stderr.expect(isDone); |
69 }); | 68 }); |
70 }); | 69 }); |
71 } | 70 } |
OLD | NEW |