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

Unified Diff: sdk/lib/_internal/pub/test/lish/force_does_not_publish_if_private_test.dart

Issue 417043005: Add publishTo to pubspec and use it in pub lish. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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/lish/force_does_not_publish_if_private_test.dart
diff --git a/sdk/lib/_internal/pub/test/lish/package_validation_has_a_warning_and_is_canceled_test.dart b/sdk/lib/_internal/pub/test/lish/force_does_not_publish_if_private_test.dart
similarity index 52%
copy from sdk/lib/_internal/pub/test/lish/package_validation_has_a_warning_and_is_canceled_test.dart
copy to sdk/lib/_internal/pub/test/lish/force_does_not_publish_if_private_test.dart
index 65ed4a652948b0371538fa790a8a1553aee4efbf..e5ca5529c9fe5fa862268ceb5560a40db853ed72 100644
--- a/sdk/lib/_internal/pub/test/lish/package_validation_has_a_warning_and_is_canceled_test.dart
+++ b/sdk/lib/_internal/pub/test/lish/force_does_not_publish_if_private_test.dart
@@ -1,10 +1,9 @@
-// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:scheduled_test/scheduled_server.dart';
import 'package:scheduled_test/scheduled_stream.dart';
-import 'package:scheduled_test/scheduled_test.dart';
import '../../lib/src/exit_codes.dart' as exit_codes;
import '../descriptor.dart' as d;
@@ -12,18 +11,13 @@ import '../test_pub.dart';
main() {
initConfig();
- setUp(d.validPackage.create);
-
- integration('package validation has a warning and is canceled', () {
+ integration('does not publish if the package is private', () {
nweiz 2014/08/01 01:12:13 How is this different than the other test with the
Bob Nystrom 2014/08/04 21:16:43 This one does "--force". Well, it does *now*, at l
var pkg = packageMap("test_pkg", "1.0.0");
- pkg["author"] = "Nathan Weizenbaum";
+ pkg["publishTo"] = "none";
d.dir(appPath, [d.pubspec(pkg)]).create();
- var server = new ScheduledServer();
- var pub = startPublish(server);
-
- pub.writeLine("n");
- pub.shouldExit(exit_codes.SUCCESS);
- pub.stderr.expect(consumeThrough("Package upload canceled."));
+ schedulePub(args: ["lish"],
+ error: "A private package cannot be published.",
+ exitCode: exit_codes.DATA);
});
}

Powered by Google App Engine
This is Rietveld 408576698