| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | |
| 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. | |
| 4 | |
| 5 import '../descriptor.dart' as d; | 1 import '../descriptor.dart' as d; |
| 6 import '../test_pub.dart'; | 2 import '../test_pub.dart'; |
| 7 import '../serve/utils.dart'; | 3 import '../serve/utils.dart'; |
| 8 | |
| 9 const SCRIPT = """ | 4 const SCRIPT = """ |
| 10 const TOKEN = "hi"; | 5 const TOKEN = "hi"; |
| 11 main() { | 6 main() { |
| 12 print(TOKEN); | 7 print(TOKEN); |
| 13 } | 8 } |
| 14 """; | 9 """; |
| 15 | |
| 16 main() { | 10 main() { |
| 17 initConfig(); | 11 initConfig(); |
| 18 withBarbackVersions("any", () { | 12 withBarbackVersions("any", () { |
| 19 integration('runs transformers in the entrypoint package', () { | 13 integration('runs transformers in the entrypoint package', () { |
| 20 d.dir(appPath, [ | 14 d.dir(appPath, [d.pubspec({ |
| 21 d.pubspec({ | |
| 22 "name": "myapp", | 15 "name": "myapp", |
| 23 "transformers": ["myapp/src/transformer"] | 16 "transformers": ["myapp/src/transformer"] |
| 24 }), | 17 }), |
| 25 d.dir("lib", [d.dir("src", [ | 18 d.dir( |
| 26 d.file("transformer.dart", dartTransformer("transformed")) | 19 "lib", |
| 27 ])]), | 20 [d.dir("src", [d.file("transformer.dart", dartTransformer("trans
formed"))])]), |
| 28 d.dir("bin", [ | 21 d.dir("bin", [d.file("hi.dart", SCRIPT)])]).create(); |
| 29 d.file("hi.dart", SCRIPT) | |
| 30 ]) | |
| 31 ]).create(); | |
| 32 | |
| 33 createLockFile('myapp', pkg: ['barback']); | 22 createLockFile('myapp', pkg: ['barback']); |
| 34 | |
| 35 var pub = pubRun(args: ["hi"]); | 23 var pub = pubRun(args: ["hi"]); |
| 36 | |
| 37 pub.stdout.expect("(hi, transformed)"); | 24 pub.stdout.expect("(hi, transformed)"); |
| 38 pub.shouldExit(); | 25 pub.shouldExit(); |
| 39 }); | 26 }); |
| 40 }); | 27 }); |
| 41 } | 28 } |
| OLD | NEW |