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

Unified Diff: sdk/lib/_internal/dartdoc/test/dartdoc_test.dart

Issue 11878015: Default constructor for dart:io Path now handles native Windows paths. Path() now does the same as… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't change tools/version.dart until the binaries are updated. Created 7 years, 11 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 | « sdk/lib/_internal/dartdoc/lib/dartdoc.dart ('k') | sdk/lib/io/directory_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/dartdoc/test/dartdoc_test.dart
diff --git a/sdk/lib/_internal/dartdoc/test/dartdoc_test.dart b/sdk/lib/_internal/dartdoc/test/dartdoc_test.dart
index e0246ac3c94e6202c8a757340220a421fe750e95..817889e78ebc59d345449d3c2ccb3e6af2d93dd5 100644
--- a/sdk/lib/_internal/dartdoc/test/dartdoc_test.dart
+++ b/sdk/lib/_internal/dartdoc/test/dartdoc_test.dart
@@ -119,7 +119,7 @@ main() {
'../../other/file.html'));
});
});
-
+
group('integration tests', () {
test('no entrypoints', () {
expect(_runDartdoc([], exitCode: 1), completes);
@@ -127,14 +127,14 @@ main() {
test('library with no packages', () {
expect(_runDartdoc(
- [new Path.fromNative('test/test_files/other_place/'
+ [new Path('test/test_files/other_place/'
'no_package_test_file.dart').toNativePath()]),
completes);
});
test('library with packages', () {
expect(_runDartdoc(
- [new Path.fromNative('test/test_files/'
+ [new Path('test/test_files/'
'package_test_file.dart').toNativePath()]),
completes);
});
« no previous file with comments | « sdk/lib/_internal/dartdoc/lib/dartdoc.dart ('k') | sdk/lib/io/directory_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698