Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Side by Side Diff: sdk/lib/_internal/pub_generated/test/transformer/exclusion/works_on_transformer_group_test.dart

Issue 937243002: Revert "Revert "Use native async/await support in pub."" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 library pub_tests;
6
7 import '../../descriptor.dart' as d;
8 import '../../test_pub.dart';
9 import '../../serve/utils.dart';
10
11 const GROUP = """
12 import 'package:barback/barback.dart';
13
14 import 'transformer.dart';
15
16 class RewriteGroup implements TransformerGroup {
17 RewriteGroup.asPlugin();
18
19 Iterable<Iterable> get phases => [[new RewriteTransformer.asPlugin()]];
20 }
21 """;
22
23 main() {
24 initConfig();
25 withBarbackVersions("any", () {
26 integration("works on a transformer group", () {
27 d.dir(appPath, [d.pubspec({
28 "name": "myapp",
29 "transformers": [{
30 "myapp/src/group": {
31 "\$include": ["web/a.txt", "web/b.txt"],
32 "\$exclude": "web/a.txt"
33 }
34 }]
35 }),
36 d.dir(
37 "lib",
38 [
39 d.dir(
40 "src",
41 [
42 d.file("transformer.dart", REWRITE_TRANSFORMER),
43 d.file("group.dart", GROUP)])]),
44 d.dir(
45 "web",
46 [
47 d.file("a.txt", "a.txt"),
48 d.file("b.txt", "b.txt"),
49 d.file("c.txt", "c.txt")])]).create();
50
51 createLockFile('myapp', pkg: ['barback']);
52
53 pubServe();
54 requestShould404("a.out");
55 requestShouldSucceed("b.out", "b.txt.out");
56 requestShould404("c.out");
57 endPubServe();
58 });
59 });
60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698