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

Unified Diff: utils/tests/pub/pub_test.dart

Issue 10399076: Get codebase ready for actually supporting versioning. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tiny tweak. Created 8 years, 7 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: utils/tests/pub/pub_test.dart
diff --git a/utils/tests/pub/pub_test.dart b/utils/tests/pub/pub_test.dart
index 8943a6a8534e6eb1b8f63bf3c9883ba745f6451c..46d9f1fca6daca6a444c5663e755c770320d7478 100644
--- a/utils/tests/pub/pub_test.dart
+++ b/utils/tests/pub/pub_test.dart
@@ -60,6 +60,9 @@ main() {
}
listCommand() {
+ // TODO(rnystrom): We don't currently have any sources that are cached, so
+ // we can't test this right now.
+ /*
group('cache', () {
test('treats an empty directory as a package', () {
dir(cachePath, [
@@ -73,12 +76,13 @@ listCommand() {
runPub(args: ['list', 'cache'],
output: '''
From system cache:
- apple from sdk
- banana from sdk
- cherry from sdk
+ apple 0.0.0 (apple from sdk)
+ banana 0.0.0 (banana from sdk)
+ cherry 0.0.0 (cherry from sdk)
''');
});
});
+ */
}
installCommand() {

Powered by Google App Engine
This is Rietveld 408576698