OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |