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

Unified Diff: sdk/lib/_internal/pub/test/build/compiles_dart_entrypoints_to_dart_and_js_test.dart

Issue 26351002: Rename "pub deploy" to "pub build". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Re-upload. Created 7 years, 2 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
Index: sdk/lib/_internal/pub/test/build/compiles_dart_entrypoints_to_dart_and_js_test.dart
diff --git a/sdk/lib/_internal/pub/test/deploy/compiles_dart_entrypoints_to_dart_and_js_test.dart b/sdk/lib/_internal/pub/test/build/compiles_dart_entrypoints_to_dart_and_js_test.dart
similarity index 78%
rename from sdk/lib/_internal/pub/test/deploy/compiles_dart_entrypoints_to_dart_and_js_test.dart
rename to sdk/lib/_internal/pub/test/build/compiles_dart_entrypoints_to_dart_and_js_test.dart
index dde6101ecde1f198a56eacb65035482f82042a00..7f8d89880bd8ae4603cfd6abd5fced7fcdb57c3f 100644
--- a/sdk/lib/_internal/pub/test/deploy/compiles_dart_entrypoints_to_dart_and_js_test.dart
+++ b/sdk/lib/_internal/pub/test/build/compiles_dart_entrypoints_to_dart_and_js_test.dart
@@ -26,19 +26,19 @@ main() {
])
]).create();
- schedulePub(args: ["deploy"],
+ schedulePub(args: ["build"],
output: '''
Finding entrypoints...
-Copying web| => deploy|
-Compiling web|file.dart => deploy|file.dart.js
-Compiling web|file.dart => deploy|file.dart
-Compiling web|subdir|subfile.dart => deploy|subdir|subfile.dart.js
-Compiling web|subdir|subfile.dart => deploy|subdir|subfile.dart
+Copying web| => build|
+Compiling web|file.dart => build|file.dart.js
+Compiling web|file.dart => build|file.dart
+Compiling web|subdir|subfile.dart => build|subdir|subfile.dart.js
+Compiling web|subdir|subfile.dart => build|subdir|subfile.dart
'''.replaceAll('|', path.separator),
exitCode: 0);
d.dir(appPath, [
- d.dir('deploy', [
+ d.dir('build', [
d.matcherFile('file.dart.js', isNot(isEmpty)),
d.matcherFile('file.dart', isNot(isEmpty)),
d.dir('subdir', [

Powered by Google App Engine
This is Rietveld 408576698