diff options
Diffstat (limited to 'third_party/rust/url/rust-url-todo')
-rw-r--r-- | third_party/rust/url/rust-url-todo | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/third_party/rust/url/rust-url-todo b/third_party/rust/url/rust-url-todo deleted file mode 100644 index 6aeefbf13..000000000 --- a/third_party/rust/url/rust-url-todo +++ /dev/null @@ -1,14 +0,0 @@ -* 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"); -} |