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

Unified Diff: test/transformer/runs_a_third_party_transform_on_the_application_package_test.dart

Issue 1530353002: Drop support for older Barback versions. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: test/transformer/runs_a_third_party_transform_on_the_application_package_test.dart
diff --git a/test/transformer/runs_a_third_party_transform_on_the_application_package_test.dart b/test/transformer/runs_a_third_party_transform_on_the_application_package_test.dart
index cc0ecf512ada154b400e348e3e801054f515930f..6d3c68f0fb75406d7dd693cb1df656b908673fca 100644
--- a/test/transformer/runs_a_third_party_transform_on_the_application_package_test.dart
+++ b/test/transformer/runs_a_third_party_transform_on_the_application_package_test.dart
@@ -9,31 +9,29 @@ import '../test_pub.dart';
import '../serve/utils.dart';
main() {
- withBarbackVersions("any", () {
- integration("runs a third-party transform on the application package", () {
- d.dir("foo", [
- d.libPubspec("foo", '1.0.0'),
- d.dir("lib", [
- d.file("foo.dart", REWRITE_TRANSFORMER)
- ])
- ]).create();
+ integration("runs a third-party transform on the application package", () {
+ d.dir("foo", [
+ d.libPubspec("foo", '1.0.0'),
+ d.dir("lib", [
+ d.file("foo.dart", REWRITE_TRANSFORMER)
+ ])
+ ]).create();
- d.dir(appPath, [
- d.pubspec({
- "name": "myapp",
- "dependencies": {"foo": {"path": "../foo"}},
- "transformers": ["foo"]
- }),
- d.dir("web", [
- d.file("foo.txt", "foo")
- ])
- ]).create();
+ d.dir(appPath, [
+ d.pubspec({
+ "name": "myapp",
+ "dependencies": {"foo": {"path": "../foo"}},
+ "transformers": ["foo"]
+ }),
+ d.dir("web", [
+ d.file("foo.txt", "foo")
+ ])
+ ]).create();
- createLockFile('myapp', sandbox: ['foo'], pkg: ['barback']);
+ createLockFile('myapp', sandbox: ['foo'], pkg: ['barback']);
- pubServe();
- requestShouldSucceed("foo.out", "foo.out");
- endPubServe();
- });
+ pubServe();
+ requestShouldSucceed("foo.out", "foo.out");
+ endPubServe();
});
}

Powered by Google App Engine
This is Rietveld 408576698