blob: fce305859499d5f2bb03673923696d15fc4f124f [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.
* Returns the empty string if there is no path component.
* @description Checks empty path settings
* @author ilya
* @reviewer
*/
import "../../../Utils/expect.dart";
main() {
Expect.equals('', Uri.parse('http://').path);
Expect.equals('', new Uri(host: 'host').path);
}