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

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

Issue 10174029: Use YAML as the format for the pubspec file. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review change Created 8 years, 8 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/pub/pub.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_tests.dart
diff --git a/utils/tests/pub/pub_tests.dart b/utils/tests/pub/pub_tests.dart
index 91e95d4d4a4bd33aeeb0b69826a8e59f8ba6952a..55c93c45191cc7fe2b7b89f9def8bd30e1a6f211 100644
--- a/utils/tests/pub/pub_tests.dart
+++ b/utils/tests/pub/pub_tests.dart
@@ -70,7 +70,7 @@ updateCommand() {
])
],
app: dir('myapp', [
- file('pubspec', 'foo')
+ file('pubspec', 'dependencies:\n- foo')
]),
args: ['update'],
expectedPackageDir: [
@@ -84,14 +84,14 @@ updateCommand() {
cache: [
dir('foo', [
file('foo.dart', 'main() => "foo";'),
- file('pubspec', 'bar')
+ file('pubspec', 'dependencies:\n- bar')
]),
dir('bar', [
file('bar.dart', 'main() => "bar";'),
])
],
app: dir('myapp', [
- file('pubspec', 'foo')
+ file('pubspec', 'dependencies:\n- foo')
]),
args: ['update'],
expectedPackageDir: [
« no previous file with comments | « utils/pub/pub.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698