blob: 6aeefbf13eba3e6f0173b158a77a01a475e152f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
* standalone path parsing?
* Test setters
* Test trim C0/space
* Test remove tab & newline
#[test]
fn test_path_segments() {
let mut url = Url::parse("http://example.net").unwrap();
url.push_path_segment("foo").unwrap();
url.extend_path_segments(&["bar", "b/az"]).unwrap();
assert_eq!(url.as_str(), "http://example.net/foo");
}
|