| OLD | NEW |
| 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 integration("runs a local transformer on a dependency", () { | 12 integration("runs a local transformer on a dependency", () { |
| 13 serveBarback(); |
| 14 |
| 13 d.dir("foo", [ | 15 d.dir("foo", [ |
| 14 d.pubspec({ | 16 d.pubspec({ |
| 15 "name": "foo", | 17 "name": "foo", |
| 16 "version": "0.0.1", | 18 "version": "0.0.1", |
| 17 "transformers": ["foo/transformer"] | 19 "transformers": ["foo/transformer"], |
| 20 "dependencies": {"barback": "any"} |
| 18 }), | 21 }), |
| 19 d.dir("lib", [ | 22 d.dir("lib", [ |
| 20 d.file("transformer.dart", REWRITE_TRANSFORMER), | 23 d.file("transformer.dart", REWRITE_TRANSFORMER), |
| 21 d.file("foo.txt", "foo") | 24 d.file("foo.txt", "foo") |
| 22 ]) | 25 ]) |
| 23 ]).create(); | 26 ]).create(); |
| 24 | 27 |
| 25 d.dir(appPath, [ | 28 d.dir(appPath, [ |
| 26 d.appPubspec({"foo": {"path": "../foo"}}), | 29 d.appPubspec({"foo": {"path": "../foo"}}), |
| 27 ]).create(); | 30 ]).create(); |
| 28 | 31 |
| 29 createLockFile('myapp', sandbox: ['foo'], pkg: ['barback']); | 32 pubGet(); |
| 30 | |
| 31 pubServe(); | 33 pubServe(); |
| 32 requestShouldSucceed("packages/foo/foo.out", "foo.out"); | 34 requestShouldSucceed("packages/foo/foo.out", "foo.out"); |
| 33 endPubServe(); | 35 endPubServe(); |
| 34 }); | 36 }); |
| 35 } | 37 } |
| OLD | NEW |