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

Unified Diff: pkg/path/test/path_test.dart

Issue 12316056: Move pkg/path to pkg/pathos. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 | « pkg/path/test/path_posix_test.dart ('k') | pkg/path/test/path_windows_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/path/test/path_test.dart
diff --git a/pkg/path/test/path_test.dart b/pkg/path/test/path_test.dart
deleted file mode 100644
index eea906ab3f4dd1acde0215ff62bb0ed2406c83b1..0000000000000000000000000000000000000000
--- a/pkg/path/test/path_test.dart
+++ /dev/null
@@ -1,59 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library all_test;
-
-import 'dart:io' as io;
-
-import 'package:unittest/unittest.dart';
-import 'package:path/path.dart' as path;
-
-main() {
- group('path.Style', () {
- test('name', () {
- expect(path.Style.posix.name, 'posix');
- expect(path.Style.windows.name, 'windows');
- });
-
- test('separator', () {
- expect(path.Style.posix.separator, '/');
- expect(path.Style.windows.separator, '\\');
- });
-
- test('toString()', () {
- expect(path.Style.posix.toString(), 'posix');
- expect(path.Style.windows.toString(), 'windows');
- });
- });
-
- group('new Builder()', () {
- test('uses the given root directory', () {
- var builder = new path.Builder(root: '/a/b/c');
- expect(builder.root, '/a/b/c');
- });
-
- test('uses the given style', () {
- var builder = new path.Builder(style: path.Style.windows);
- expect(builder.style, path.Style.windows);
- });
-
- test('uses the current working directory if root is omitted', () {
- var builder = new path.Builder();
- expect(builder.root, new io.Directory.current().path);
- });
-
- test('uses the host OS if style is omitted', () {
- var builder = new path.Builder();
- if (io.Platform.operatingSystem == 'windows') {
- expect(builder.style, path.Style.windows);
- } else {
- expect(builder.style, path.Style.posix);
- }
- });
- });
-
- test('current', () {
- expect(path.current, new io.Directory.current().path);
- });
-}
« no previous file with comments | « pkg/path/test/path_posix_test.dart ('k') | pkg/path/test/path_windows_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698