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

Unified Diff: test/packages_file_test.dart

Issue 1096723002: Make pub generate .packages file. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 5 years, 6 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
« test/descriptor.dart ('K') | « test/get/dry_run_does_not_apply_changes_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/packages_file_test.dart
diff --git a/test/packages_file_test.dart b/test/packages_file_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..8b4f7772ab764892b52d133d5dab30bdfe2ad411
--- /dev/null
+++ b/test/packages_file_test.dart
@@ -0,0 +1,30 @@
+// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS d.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 d.file.
+
+import 'descriptor.dart' as d;
+import 'test_pub.dart';
+
+main() {
+ initConfig();
+ forBothPubGetAndUpgrade((command) {
+ integration('check that .packages is created', () {
+ servePackages((builder) {
+ builder.serve("foo", "1.2.3",
+ deps: {'baz': '2.2.2'}, contents: [d.dir("lib", [])]);
+ builder.serve("bar", "3.2.1", contents: [d.dir("lib", [])]);
+ builder.serve("baz", "2.2.2",
+ deps: {"bar": "3.2.1"}, contents: [d.dir("lib", [])]);
+ });
+
+ d.appDir({"foo": "1.2.3"}).create();
+
+ pubCommand(command);
+
+ d.dir(appPath, [d.packagesFile({
+ "foo": "1.2.3", "bar": "3.2.1", "baz": "2.2.2", "myapp": "0.0.0"})])
+ .validate();
+ });
+ });
+}
+
« test/descriptor.dart ('K') | « test/get/dry_run_does_not_apply_changes_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698