| 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 const TRANSFORMER = """ | 11 const TRANSFORMER = """ |
| 12 import 'dart:async'; | 12 import 'dart:async'; |
| 13 | 13 |
| 14 import 'package:barback/barback.dart'; | 14 import 'package:barback/barback.dart'; |
| 15 import 'package:source_maps/source_maps.dart'; | |
| 16 | 15 |
| 17 class ModeTransformer extends Transformer { | 16 class ModeTransformer extends Transformer { |
| 18 final BarbackSettings settings; | 17 final BarbackSettings settings; |
| 19 ModeTransformer.asPlugin(this.settings); | 18 ModeTransformer.asPlugin(this.settings); |
| 20 | 19 |
| 21 String get allowedExtensions => '.txt'; | 20 String get allowedExtensions => '.txt'; |
| 22 | 21 |
| 23 Future apply(Transform transform) { | 22 Future apply(Transform transform) { |
| 24 return new Future.value().then((_) { | 23 return new Future.value().then((_) { |
| 25 var id = transform.primaryInput.id.changeExtension(".out"); | 24 var id = transform.primaryInput.id.changeExtension(".out"); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 47 ]).create(); | 46 ]).create(); |
| 48 | 47 |
| 49 createLockFile('myapp', pkg: ['barback']); | 48 createLockFile('myapp', pkg: ['barback']); |
| 50 | 49 |
| 51 pubServe(args: ["--mode", "depeche"]); | 50 pubServe(args: ["--mode", "depeche"]); |
| 52 requestShouldSucceed("foo.out", "depeche"); | 51 requestShouldSucceed("foo.out", "depeche"); |
| 53 endPubServe(); | 52 endPubServe(); |
| 54 }); | 53 }); |
| 55 }); | 54 }); |
| 56 } | 55 } |
| OLD | NEW |