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

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

Issue 10900015: Create packages directories in test/ and bin/ as well as at the top level. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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/entrypoint.dart ('K') | « utils/pub/entrypoint.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_install_test.dart
diff --git a/utils/tests/pub/pub_install_test.dart b/utils/tests/pub/pub_install_test.dart
index e5d35397ca5f70cf2e390004c8f98f561b0575ce..ac0573e1f1804bcf9fa97ecf6d9cde9d8817a24a 100644
--- a/utils/tests/pub/pub_install_test.dart
+++ b/utils/tests/pub/pub_install_test.dart
@@ -48,4 +48,51 @@ main() {
run();
});
+
+ group('creates a packages directory in', () {
+ test('"test/" and its subdirectories', () {
+ dir(appPath, [
+ appPubspec([]),
+ dir("test", [dir("subtest")])
+ ]).scheduleCreate();
+
+ schedulePub(args: ['install'],
+ output: const RegExp(@"Dependencies installed!$"));
+
+ dir(appPath, [
+ dir("test", [
+ dir("packages", [
+ dir("myapp", [appPubspec([])])
+ ]),
+ dir("subtest", [
+ dir("packages", [
+ dir("myapp", [appPubspec([])])
+ ])
+ ])
+ ])
+ ]).scheduleValidate();
+
+ run();
+ });
+
+ test('"bin/"', () {
+ dir(appPath, [
+ appPubspec([]),
+ dir("bin")
+ ]).scheduleCreate();
+
+ schedulePub(args: ['install'],
+ output: const RegExp(@"Dependencies installed!$"));
+
+ dir(appPath, [
+ dir("bin", [
+ dir("packages", [
+ dir("myapp", [appPubspec([])])
+ ])
+ ])
+ ]).scheduleValidate();
+
+ run();
+ });
+ });
}
« utils/pub/entrypoint.dart ('K') | « utils/pub/entrypoint.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698