From 940f244aaff7d902903e0b6a4fe1a95e85fe48ac Mon Sep 17 00:00:00 2001 From: sigil-03 Date: Sun, 25 May 2025 08:18:09 -0600 Subject: [PATCH] change test_* to simple_* --- src/test.rs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/test.rs b/src/test.rs index 3db7551..a90d98f 100644 --- a/src/test.rs +++ b/src/test.rs @@ -60,10 +60,7 @@ impl<'a> Graph for SimpleGraph { } #[test] -fn it_works() {} - -#[test] -fn test_connect() { +fn simple_connect() { let v1 = SimpleVertex { id: 0 }; let v2 = SimpleVertex { id: 1 }; let mut g = SimpleGraph { @@ -78,7 +75,7 @@ fn test_connect() { } #[test] -fn test_disconnect() { +fn simple_disconnect() { let v1 = SimpleVertex { id: 0 }; let v2 = SimpleVertex { id: 1 }; let mut g = SimpleGraph { @@ -96,6 +93,6 @@ fn test_disconnect() { } #[test] -fn test_degree() { +fn simple_degree() { todo!() }