blob: f4d0ce9d22ffc65190ac7e3c4ab4644f9f6c1af3 [file] [log] [blame]
/*
* Copyright (c) 2011, 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.
*/
/**
* @assertion final String path
* Returns the path component.
* The returned path is encoded.
* @description Checks expected path settings
* @author ilya
* @reviewer
*/
import "../../../Utils/expect.dart";
main() {
Expect.equals('path', new Uri(path: 'path').path);
Expect.equals('%C2%AA', new Uri(pathSegments: ['\u00AA']).path);
}