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

Side by Side Diff: sdk/lib/_internal/pub_generated/test/transformer/configuration/configuration_defaults_to_empty_map_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 'dart:convert'; 7 import 'dart:convert';
8 8
9 import '../../descriptor.dart' as d; 9 import '../../descriptor.dart' as d;
10 import '../../test_pub.dart'; 10 import '../../test_pub.dart';
(...skipping 19 matching lines...) Expand all
30 new Asset.fromString(id, JSON.encode(settings.configuration))); 30 new Asset.fromString(id, JSON.encode(settings.configuration)));
31 }); 31 });
32 } 32 }
33 } 33 }
34 """; 34 """;
35 35
36 main() { 36 main() {
37 initConfig(); 37 initConfig();
38 withBarbackVersions("any", () { 38 withBarbackVersions("any", () {
39 integration("configuration defaults to an empty map", () { 39 integration("configuration defaults to an empty map", () {
40 d.dir(appPath, [ 40 d.dir(appPath, [d.pubspec({
41 d.pubspec({
42 "name": "myapp", 41 "name": "myapp",
43 "transformers": ["myapp/src/transformer"] 42 "transformers": ["myapp/src/transformer"]
44 }), 43 }),
45 d.dir("lib", [d.dir("src", [ 44 d.dir("lib", [d.dir("src", [d.file("transformer.dart", transformer)] )]),
46 d.file("transformer.dart", transformer) 45 d.dir("web", [d.file("foo.txt", "foo")])]).create();
47 ])]),
48 d.dir("web", [
49 d.file("foo.txt", "foo")
50 ])
51 ]).create();
52 46
53 createLockFile('myapp', pkg: ['barback']); 47 createLockFile('myapp', pkg: ['barback']);
54 48
55 var server = pubServe(); 49 var server = pubServe();
56 requestShouldSucceed("foo.json", JSON.encode({})); 50 requestShouldSucceed("foo.json", JSON.encode({}));
57 endPubServe(); 51 endPubServe();
58 }); 52 });
59 }); 53 });
60 } 54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698