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

Unified Diff: utils/tests/pub/path/path_posix_test.dart

Issue 11557008: Make pub publish more user friendly: (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Blacklist '.DS_Store' files from publish. Created 8 years 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
Index: utils/tests/pub/path/path_posix_test.dart
diff --git a/utils/tests/pub/path/path_posix_test.dart b/utils/tests/pub/path/path_posix_test.dart
index a34c32d57c2c2802e481b4a0c88cef8b52563a84..444c33ebb366a9463cd3f518a6755d9170a3343b 100644
--- a/utils/tests/pub/path/path_posix_test.dart
+++ b/utils/tests/pub/path/path_posix_test.dart
@@ -265,6 +265,29 @@ main() {
});
});
+ group('split', () {
+ test('splits out directories', () {
+ expect(builder.split(''), []);
+ expect(builder.split('a'), ['a']);
+ expect(builder.split('a/b/c.txt'), ['a', 'b', 'c.txt']);
+ });
+
+ test('does not normalize', () {
+ expect(builder.split('.'), ['.']);
+ expect(builder.split('..'), ['..']);
+ expect(builder.split('a/b/../c/./d'), ['a', 'b', '..', 'c', '.', 'd']);
+ });
+
+ test('collapses empty parts', () {
+ expect(builder.split('a//b///c'), ['a', 'b', 'c']);
+ });
+
+ test('includes the root prefix in the first part', () {
+ expect(builder.split('/'), ['/']);
+ expect(builder.split('/a/b/c'), ['/a', 'b', 'c']);
+ });
+ });
+
test('withoutExtension', () {
expect(builder.withoutExtension(''), '');
expect(builder.withoutExtension('a'), 'a');

Powered by Google App Engine
This is Rietveld 408576698