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

Unified Diff: pkg/barback/test/package_graph/transform/transform_test.dart

Issue 243793005: Don't require Transformer methods to return Futures. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 6 years, 8 months 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
« no previous file with comments | « pkg/barback/lib/src/transformer.dart ('k') | pkg/barback/test/transformer/bad.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/barback/test/package_graph/transform/transform_test.dart
diff --git a/pkg/barback/test/package_graph/transform/transform_test.dart b/pkg/barback/test/package_graph/transform/transform_test.dart
index dce5e2cd15586ea2cc38cdca8b26b81f232b88ec..969261a1125ba6f90ed91a15bb8e4e72b09d26c8 100644
--- a/pkg/barback/test/package_graph/transform/transform_test.dart
+++ b/pkg/barback/test/package_graph/transform/transform_test.dart
@@ -342,6 +342,15 @@ main() {
buildShouldSucceed();
});
+ test("gets a asset transformed by a sync transformer", () {
Bob Nystrom 2014/04/22 18:23:49 "a asset" -> "an asset".
nweiz 2014/04/22 19:57:57 Done.
+ initGraph(["app|foo.blub"], {"app": [
+ [new SyncRewriteTransformer("blub", "blab")]
+ ]});
+ updateSources(["app|foo.blub"]);
+ expectAsset("app|foo.blab", "new.blab");
+ buildShouldSucceed();
+ });
+
group("Transform.hasInput", () {
test("returns whether an input exists", () {
initGraph(["app|foo.txt", "app|bar.txt"], {'app': [
« no previous file with comments | « pkg/barback/lib/src/transformer.dart ('k') | pkg/barback/test/transformer/bad.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698