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

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

Issue 10386021: Add a Pub source that checks packages out from Git. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« utils/pub/source_registry.dart ('K') | « utils/pub/utils.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/pub/pub_test.dart
diff --git a/utils/tests/pub/pub_test.dart b/utils/tests/pub/pub_test.dart
index a8b242b032a298357f6fd3254bb7b28908480abc..76f79ddfe2949a65f87a87c37cc30ac04b104eb3 100644
--- a/utils/tests/pub/pub_test.dart
+++ b/utils/tests/pub/pub_test.dart
@@ -92,7 +92,7 @@ installCommand() {
])
],
app: dir('myapp', [
- file('pubspec', 'dependencies:\n- foo')
+ file('pubspec', 'dependencies:\n foo:')
]),
args: ['install'],
expectedPackageDir: [
@@ -109,7 +109,7 @@ installCommand() {
dir('lib', [
dir('foo', [
file('foo.dart', 'main() => "foo";'),
- file('pubspec', 'dependencies:\n- bar')
+ file('pubspec', 'dependencies:\n bar:')
]),
dir('bar', [
file('bar.dart', 'main() => "bar";'),
@@ -117,7 +117,7 @@ installCommand() {
])
],
app: dir('myapp', [
- file('pubspec', 'dependencies:\n- foo')
+ file('pubspec', 'dependencies:\n foo:')
]),
args: ['install'],
expectedPackageDir: [
« utils/pub/source_registry.dart ('K') | « utils/pub/utils.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698