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

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

Issue 10938003: Don't extract the name of a package from its description. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 years, 3 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
« no previous file with comments | « utils/tests/pub/pub_install_test.dart ('k') | utils/tests/pub/pub_update_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/pub/pub_update_git_test.dart
diff --git a/utils/tests/pub/pub_update_git_test.dart b/utils/tests/pub/pub_update_git_test.dart
index 681eac63cb23d21eada9ffd18a83f002c2187421..27b5b963c4c686d8fef8e64c20631f76e586cd06 100644
--- a/utils/tests/pub/pub_update_git_test.dart
+++ b/utils/tests/pub/pub_update_git_test.dart
@@ -14,11 +14,13 @@ main() {
ensureGit();
git('foo.git', [
- libDir('foo')
+ libDir('foo'),
+ libPubspec('foo', '1.0.0')
]).scheduleCreate();
git('bar.git', [
- libDir('bar')
+ libDir('bar'),
+ libPubspec('bar', '1.0.0')
]).scheduleCreate();
appDir([{"git": "../foo.git"}, {"git": "../bar.git"}]).scheduleCreate();
@@ -36,11 +38,13 @@ main() {
]).scheduleValidate();
git('foo.git', [
- libDir('foo', 'foo 2')
+ libDir('foo', 'foo 2'),
+ libPubspec('foo', '1.0.0')
]).scheduleCommit();
git('bar.git', [
- libDir('bar', 'bar 2')
+ libDir('bar', 'bar 2'),
+ libPubspec('bar', '1.0.0')
]).scheduleCommit();
schedulePub(args: ['update'],
@@ -63,11 +67,13 @@ main() {
ensureGit();
git('foo.git', [
- libDir('foo')
+ libDir('foo'),
+ libPubspec('foo', '1.0.0')
]).scheduleCreate();
git('bar.git', [
- libDir('bar')
+ libDir('bar'),
+ libPubspec('bar', '1.0.0')
]).scheduleCreate();
appDir([{"git": "../foo.git"}, {"git": "../bar.git"}]).scheduleCreate();
@@ -85,11 +91,13 @@ main() {
]).scheduleValidate();
git('foo.git', [
- libDir('foo', 'foo 2')
+ libDir('foo', 'foo 2'),
+ libPubspec('foo', '1.0.0')
]).scheduleCommit();
git('bar.git', [
- libDir('bar', 'bar 2')
+ libDir('bar', 'bar 2'),
+ libPubspec('bar', '1.0.0')
]).scheduleCommit();
schedulePub(args: ['update', 'foo'],
@@ -117,7 +125,8 @@ main() {
]).scheduleCreate();
git('foo-dep.git', [
- libDir('foo-dep')
+ libDir('foo-dep'),
+ libPubspec('foo-dep', '1.0.0')
]).scheduleCreate();
appDir([{"git": "../foo.git"}]).scheduleCreate();
@@ -140,7 +149,8 @@ main() {
]).scheduleCreate();
git('foo-dep.git', [
- libDir('foo-dep', 'foo-dep 2')
+ libDir('foo-dep', 'foo-dep 2'),
+ libPubspec('foo-dep', '1.0.0')
]).scheduleCommit();
schedulePub(args: ['update', 'foo'],
« no previous file with comments | « utils/tests/pub/pub_install_test.dart ('k') | utils/tests/pub/pub_update_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698