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

Side by Side 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, 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 unified diff | Download patch | Annotate | Revision Log
« utils/pub/entrypoint.dart ('K') | « utils/pub/entrypoint.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #library('pub_tests'); 5 #library('pub_tests');
6 6
7 #import('dart:io'); 7 #import('dart:io');
8 8
9 #import('test_pub.dart'); 9 #import('test_pub.dart');
10 #import('../../../pkg/unittest/unittest.dart'); 10 #import('../../../pkg/unittest/unittest.dart');
(...skipping 30 matching lines...) Expand all
41 41
42 schedulePub(args: ['install'], 42 schedulePub(args: ['install'],
43 output: const RegExp(@"Dependencies installed!$")); 43 output: const RegExp(@"Dependencies installed!$"));
44 44
45 dir(packagesPath, [ 45 dir(packagesPath, [
46 dir("myapp_name", [pubspec({"name": "myapp_name"})]) 46 dir("myapp_name", [pubspec({"name": "myapp_name"})])
47 ]).scheduleValidate(); 47 ]).scheduleValidate();
48 48
49 run(); 49 run();
50 }); 50 });
51
52 group('creates a packages directory in', () {
53 test('"test/" and its subdirectories', () {
54 dir(appPath, [
55 appPubspec([]),
56 dir("test", [dir("subtest")])
57 ]).scheduleCreate();
58
59 schedulePub(args: ['install'],
60 output: const RegExp(@"Dependencies installed!$"));
61
62 dir(appPath, [
63 dir("test", [
64 dir("packages", [
65 dir("myapp", [appPubspec([])])
66 ]),
67 dir("subtest", [
68 dir("packages", [
69 dir("myapp", [appPubspec([])])
70 ])
71 ])
72 ])
73 ]).scheduleValidate();
74
75 run();
76 });
77
78 test('"bin/"', () {
79 dir(appPath, [
80 appPubspec([]),
81 dir("bin")
82 ]).scheduleCreate();
83
84 schedulePub(args: ['install'],
85 output: const RegExp(@"Dependencies installed!$"));
86
87 dir(appPath, [
88 dir("bin", [
89 dir("packages", [
90 dir("myapp", [appPubspec([])])
91 ])
92 ])
93 ]).scheduleValidate();
94
95 run();
96 });
97 });
51 } 98 }
OLDNEW
« 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