blob: 806a1cd7ba6b9232e0ac07a9fcd7daf80a3eb7ac [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 fragment
* Returns the fragment identifier component.
* Returns the empty string if there is no fragment identifier component.
* @description Checks expected fragment settings
* @author ilya
*/
import "../../../Utils/expect.dart";
main() {
var x = new Uri(fragment: '-._~%20frag');
Expect.equals('-._~%20frag', x.fragment);
x = new Uri.http('host', 'path');
Expect.equals('', x.fragment);
x = Uri.parse('###');
Expect.equals('%23%23', x.fragment);
}