Browse Source

Remove rust-url-todo

Anthony Ramine 8 years ago
parent
commit
1756b87ec1
1 changed files with 0 additions and 14 deletions
  1. 0 14
      rust-url-todo

+ 0 - 14
rust-url-todo

@@ -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");
-}