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

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

Issue 10544041: "pubspec" -> "pubspec.yaml". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
« no previous file with comments | « utils/pub/package.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 0bdfb04776ccf7bc42e753ad8010883987334a10..8b302d54885eb4f00dbc1c99d2a8ab315ac3c4da 100644
--- a/utils/tests/pub/pub_test.dart
+++ b/utils/tests/pub/pub_test.dart
@@ -96,7 +96,7 @@ installCommand() {
]).scheduleCreate();
dir(appPath, [
- file('pubspec', 'dependencies:\n foo:')
+ file('pubspec.yaml', 'dependencies:\n foo:')
]).scheduleCreate();
dir(packagesPath, [
@@ -116,7 +116,7 @@ installCommand() {
dir('lib', [
dir('foo', [
file('foo.dart', 'main() => "foo";'),
- file('pubspec', 'dependencies:\n bar:')
+ file('pubspec.yaml', 'dependencies:\n bar:')
]),
dir('bar', [
file('bar.dart', 'main() => "bar";'),
@@ -125,7 +125,7 @@ installCommand() {
]).scheduleCreate();
dir(appPath, [
- file('pubspec', 'dependencies:\n foo:')
+ file('pubspec.yaml', 'dependencies:\n foo:')
]).scheduleCreate();
dir(packagesPath, [
@@ -150,7 +150,7 @@ installCommand() {
]).scheduleCreate();
dir(appPath, [
- file('pubspec', '''
+ file('pubspec.yaml', '''
dependencies:
foo:
git: ../foo.git
@@ -172,7 +172,7 @@ dependencies:
withGit(() {
git('foo.git', [
file('foo.dart', 'main() => "foo";'),
- file('pubspec', '''
+ file('pubspec.yaml', '''
dependencies:
bar:
git: ../bar.git
@@ -184,7 +184,7 @@ dependencies:
]).scheduleCreate();
dir(appPath, [
- file('pubspec', '''
+ file('pubspec.yaml', '''
dependencies:
foo:
git: ../foo.git
« no previous file with comments | « utils/pub/package.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698