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

Unified Diff: sdk/lib/_internal/pub_generated/test/transformer/exclusion/works_on_aggregate_transformer_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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/pub_generated/test/transformer/exclusion/works_on_aggregate_transformer_test.dart
diff --git a/sdk/lib/_internal/pub_generated/test/transformer/exclusion/works_on_aggregate_transformer_test.dart b/sdk/lib/_internal/pub_generated/test/transformer/exclusion/works_on_aggregate_transformer_test.dart
deleted file mode 100644
index 436aa6e871553793c32324904faffaa4069f7368..0000000000000000000000000000000000000000
--- a/sdk/lib/_internal/pub_generated/test/transformer/exclusion/works_on_aggregate_transformer_test.dart
+++ /dev/null
@@ -1,67 +0,0 @@
-// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS d.file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library pub_tests;
-
-import '../../descriptor.dart' as d;
-import '../../test_pub.dart';
-import '../../serve/utils.dart';
-
-const AGGREGATE_TRANSFORMER = """
-import 'dart:async';
-
-import 'package:barback/barback.dart';
-import 'package:path/path.dart' as p;
-
-class ManyToOneTransformer extends AggregateTransformer {
- ManyToOneTransformer.asPlugin();
-
- String classifyPrimary(AssetId id) {
- if (id.extension != '.txt') return null;
- return p.url.dirname(id.path);
- }
-
- Future apply(AggregateTransform transform) {
- return transform.primaryInputs.toList().then((assets) {
- assets.sort((asset1, asset2) => asset1.id.path.compareTo(asset2.id.path));
- return Future.wait(assets.map((asset) => asset.readAsString()));
- }).then((contents) {
- var id = new AssetId(transform.package,
- p.url.join(transform.key, 'out.txt'));
- transform.addOutput(new Asset.fromString(id, contents.join('\\n')));
- });
- }
-}
-""";
-
-main() {
- initConfig();
- withBarbackVersions(">=0.14.1", () {
- integration("works on an aggregate transformer", () {
- d.dir(appPath, [d.pubspec({
- "name": "myapp",
- "transformers": [{
- "myapp": {
- "\$include": ["web/a.txt", "web/b.txt", "web/c.txt"],
- "\$exclude": "web/a.txt"
- }
- }]
- }),
- d.dir("lib", [d.file("transformer.dart", AGGREGATE_TRANSFORMER),]),
- d.dir(
- "web",
- [
- d.file("a.txt", "a"),
- d.file("b.txt", "b"),
- d.file("c.txt", "c"),
- d.file("d.txt", "d")])]).create();
-
- createLockFile('myapp', pkg: ['barback']);
-
- pubServe();
- requestShouldSucceed("out.txt", "b\nc");
- endPubServe();
- });
- });
-}

Powered by Google App Engine
This is Rietveld 408576698