From 6a31a30b98f7febe9ac0db74211ef074aefc7ad3 Mon Sep 17 00:00:00 2001 From: "Gabriel A. Giovanini" Date: Sat, 11 Jun 2022 18:15:38 +0200 Subject: feat: Add project tab --- tests/test_router.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'tests/test_router.rs') diff --git a/tests/test_router.rs b/tests/test_router.rs index cfd4c32..97f344c 100644 --- a/tests/test_router.rs +++ b/tests/test_router.rs @@ -5,15 +5,28 @@ fn test_router_new_posts() { match Router::new("/posts/2021-12-26Enable_NFS_on_K3S.md") { Router::NotFound => assert!(false, "Wrong type parse"), Router::Index => assert!(false, "Wrong type parse"), + Router::Projects => assert!(false, "Wrong type parse"), Router::Post { page } => assert_eq!(page, "2021-12-26Enable_NFS_on_K3S.md".to_string()), }; } + +#[test] +fn test_router_projects() { + match Router::new("/projects") { + Router::NotFound => assert!(false, "Wrong type parse"), + Router::Index => assert!(false, "Wrong type parse"), + Router::Projects => assert!(true), + Router::Post { page: _ } => assert!(false, "Wrong type parse"), + }; +} + #[test] fn test_router_new_index() { match Router::new("/") { Router::Index => assert!(true), Router::NotFound => assert!(false, "Wrong type parse"), + Router::Projects => assert!(false, "Wrong type parse"), Router::Post { page: _ } => assert!(false, "Wrong type parse"), }; } @@ -23,6 +36,7 @@ fn test_router_new_not_found() { match Router::new("/not_found") { Router::NotFound => assert!(true), Router::Index => assert!(false, "Wrong type parse"), + Router::Projects => assert!(false, "Wrong type parse"), Router::Post { page: _ } => assert!(false, "Wrong type parse"), }; } @@ -32,6 +46,7 @@ fn test_router_new_not_found_matching_regex() { match Router::new("/posts/2021-12-03Enable_NFS_on_K3S.html") { Router::NotFound => assert!(true), Router::Index => assert!(false, "Wrong type parse"), + Router::Projects => assert!(false, "Wrong type parse"), Router::Post { page: _ } => assert!(false, "Wrong type parse"), }; } -- cgit v1.2.3