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

Unified Diff: sdk/lib/_internal/pub/test/build/copies_non_dart_files_to_build_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/copies_non_dart_files_to_build_test.dart
diff --git a/sdk/lib/_internal/pub/test/deploy/copies_non_dart_files_to_deploy_test.dart b/sdk/lib/_internal/pub/test/build/copies_non_dart_files_to_build_test.dart
similarity index 88%
rename from sdk/lib/_internal/pub/test/deploy/copies_non_dart_files_to_deploy_test.dart
rename to sdk/lib/_internal/pub/test/build/copies_non_dart_files_to_build_test.dart
index 51ee016d514829027f9e921f36b99bd6e7552472..5929a6b79e7434d9a37f90d8012a004c8a0559ba 100644
--- a/sdk/lib/_internal/pub/test/deploy/copies_non_dart_files_to_deploy_test.dart
+++ b/sdk/lib/_internal/pub/test/build/copies_non_dart_files_to_build_test.dart
@@ -10,7 +10,7 @@ import '../test_pub.dart';
main() {
initConfig();
- integration("copies non-Dart files to deploy/", () {
+ integration("copies non-Dart files to build/", () {
servePackages([packageMap("browser", "1.0.0")]);
d.dir(appPath, [
@@ -25,15 +25,15 @@ main() {
])
]).create();
- schedulePub(args: ["deploy"],
+ schedulePub(args: ["build"],
output: '''
Finding entrypoints...
-Copying web| => deploy|
+Copying web| => build|
'''.replaceAll('|', path.separator),
exitCode: 0);
d.dir(appPath, [
- d.dir('deploy', [
+ d.dir('build', [
d.nothing('packages'),
d.file('file.txt', 'contents'),
d.dir('subdir', [

Powered by Google App Engine
This is Rietveld 408576698