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

Side by Side Diff: test/transformer/loads_an_aggregate_transformer_test.dart

Issue 1523323004: Install barback from a hosted source in all tests. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Merge for real. Created 5 years 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
OLDNEW
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 '../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
(...skipping 19 matching lines...) Expand all
30 var id = new AssetId(transform.package, 30 var id = new AssetId(transform.package,
31 p.url.join(transform.key, 'out.txt')); 31 p.url.join(transform.key, 'out.txt'));
32 transform.addOutput(new Asset.fromString(id, contents.join('\\n'))); 32 transform.addOutput(new Asset.fromString(id, contents.join('\\n')));
33 }); 33 });
34 } 34 }
35 } 35 }
36 """; 36 """;
37 37
38 main() { 38 main() {
39 integration("loads an aggregate transformer", () { 39 integration("loads an aggregate transformer", () {
40 serveBarback();
41
40 d.dir(appPath, [ 42 d.dir(appPath, [
41 d.pubspec({ 43 d.pubspec({
42 "name": "myapp", 44 "name": "myapp",
43 "transformers": ["myapp"] 45 "transformers": ["myapp"],
46 "dependencies": {"barback": "any"}
44 }), 47 }),
45 d.dir("lib", [ 48 d.dir("lib", [
46 d.file("transformer.dart", AGGREGATE_TRANSFORMER), 49 d.file("transformer.dart", AGGREGATE_TRANSFORMER),
47 ]), 50 ]),
48 d.dir("web", [ 51 d.dir("web", [
49 d.file("foo.txt", "foo"), 52 d.file("foo.txt", "foo"),
50 d.file("bar.txt", "bar") 53 d.file("bar.txt", "bar")
51 ]) 54 ])
52 ]).create(); 55 ]).create();
53 56
54 createLockFile('myapp', pkg: ['barback']); 57 pubGet();
55
56 pubServe(); 58 pubServe();
57 requestShouldSucceed("out.txt", "bar\nfoo"); 59 requestShouldSucceed("out.txt", "bar\nfoo");
58 endPubServe(); 60 endPubServe();
59 }); 61 });
60 } 62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698