| 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 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 return new Future.value().then((_) { | 24 return new Future.value().then((_) { |
| 25 var id = transform.primaryInput.id.changeExtension(".out"); | 25 var id = transform.primaryInput.id.changeExtension(".out"); |
| 26 transform.addOutput(new Asset.fromString(id, settings.mode.toString())); | 26 transform.addOutput(new Asset.fromString(id, settings.mode.toString())); |
| 27 }); | 27 }); |
| 28 } | 28 } |
| 29 } | 29 } |
| 30 """; | 30 """; |
| 31 | 31 |
| 32 main() { | 32 main() { |
| 33 initConfig(); | 33 initConfig(); |
| 34 integration("allows user-defined mode names", () { | 34 withBarbackVersions("any", () { |
| 35 d.dir(appPath, [ | 35 integration("allows user-defined mode names", () { |
| 36 d.pubspec({ | 36 d.dir(appPath, [ |
| 37 "name": "myapp", | 37 d.pubspec({ |
| 38 "transformers": ["myapp/src/transformer"] | 38 "name": "myapp", |
| 39 }), | 39 "transformers": ["myapp/src/transformer"] |
| 40 d.dir("lib", [d.dir("src", [ | 40 }), |
| 41 d.file("transformer.dart", TRANSFORMER) | 41 d.dir("lib", [d.dir("src", [ |
| 42 ])]), | 42 d.file("transformer.dart", TRANSFORMER) |
| 43 d.dir("web", [ | 43 ])]), |
| 44 d.file("foo.txt", "foo") | 44 d.dir("web", [ |
| 45 ]) | 45 d.file("foo.txt", "foo") |
| 46 ]).create(); | 46 ]) |
| 47 ]).create(); |
| 47 | 48 |
| 48 createLockFile('myapp', pkg: ['barback']); | 49 createLockFile('myapp', pkg: ['barback']); |
| 49 | 50 |
| 50 pubServe(args: ["--mode", "depeche"]); | 51 pubServe(args: ["--mode", "depeche"]); |
| 51 requestShouldSucceed("foo.out", "depeche"); | 52 requestShouldSucceed("foo.out", "depeche"); |
| 52 endPubServe(); | 53 endPubServe(); |
| 54 }); |
| 53 }); | 55 }); |
| 54 } | 56 } |
| OLD | NEW |