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

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

Issue 887223007: 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
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.file 1 // Copyright (c) 2013, 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 '../descriptor.dart' as d; 7 import '../descriptor.dart' as d;
8 import '../test_pub.dart'; 8 import '../test_pub.dart';
9 import '../serve/utils.dart'; 9 import '../serve/utils.dart';
10 10
11 main() { 11 main() {
12 initConfig(); 12 initConfig();
13 withBarbackVersions("any", () { 13 withBarbackVersions("any", () {
14 integration("runs a third-party transformer on a local transformer", () { 14 integration("runs a third-party transformer on a local transformer", () {
15 d.dir("foo", [ 15 d.dir(
16 d.libPubspec("foo", '1.0.0'), 16 "foo",
17 d.dir("lib", [ 17 [
18 d.file("transformer.dart", dartTransformer('foo')) 18 d.libPubspec("foo", '1.0.0'),
19 ]) 19 d.dir("lib", [d.file("transformer.dart", dartTransformer('foo'))]) ]).create();
20 ]).create();
21 20
22 d.dir(appPath, [ 21 d.dir(appPath, [d.pubspec({
23 d.pubspec({
24 "name": "myapp", 22 "name": "myapp",
25 "transformers": ["foo/transformer", "myapp/transformer"], 23 "transformers": ["foo/transformer", "myapp/transformer"],
26 "dependencies": {"foo": {"path": "../foo"}} 24 "dependencies": {
25 "foo": {
26 "path": "../foo"
27 }
28 }
27 }), 29 }),
28 d.dir("lib", [ 30 d.dir("lib", [d.file("transformer.dart", dartTransformer('myapp'))]) ,
29 d.file("transformer.dart", dartTransformer('myapp')) 31 d.dir("web", [d.file("main.dart", 'const TOKEN = "main.dart";')])]). create();
30 ]),
31 d.dir("web", [
32 d.file("main.dart", 'const TOKEN = "main.dart";')
33 ])
34 ]).create();
35 32
36 createLockFile('myapp', sandbox: ['foo'], pkg: ['barback']); 33 createLockFile('myapp', sandbox: ['foo'], pkg: ['barback']);
37 34
38 pubServe(); 35 pubServe();
39 requestShouldSucceed("main.dart", 36 requestShouldSucceed(
37 "main.dart",
40 'const TOKEN = "((main.dart, foo), (myapp, foo))";'); 38 'const TOKEN = "((main.dart, foo), (myapp, foo))";');
41 endPubServe(); 39 endPubServe();
42 }); 40 });
43 }); 41 });
44 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698