diff --git a/server/tests/tables_data/handlers/get_table_data_by_position_test.rs b/server/tests/tables_data/get/get_table_data_by_position_test.rs similarity index 100% rename from server/tests/tables_data/handlers/get_table_data_by_position_test.rs rename to server/tests/tables_data/get/get_table_data_by_position_test.rs diff --git a/server/tests/tables_data/get/mod.rs b/server/tests/tables_data/get/mod.rs index c0feaa1..52960e9 100644 --- a/server/tests/tables_data/get/mod.rs +++ b/server/tests/tables_data/get/mod.rs @@ -2,3 +2,4 @@ pub mod get_table_data_count_test; pub mod get_table_data_test; +pub mod get_table_data_by_position_test; diff --git a/server/tests/tables_data/handlers/mod.rs b/server/tests/tables_data/handlers/mod.rs deleted file mode 100644 index 4890d75..0000000 --- a/server/tests/tables_data/handlers/mod.rs +++ /dev/null @@ -1,3 +0,0 @@ -// tests/tables_data/mod.rs - -pub mod get_table_data_by_position_test; diff --git a/server/tests/tables_data/mod.rs b/server/tests/tables_data/mod.rs index 3f8bfdf..26f047e 100644 --- a/server/tests/tables_data/mod.rs +++ b/server/tests/tables_data/mod.rs @@ -1,7 +1,6 @@ // tests/tables_data/mod.rs -pub mod handlers; -// pub mod get; -// pub mod delete; -// pub mod post; -// pub mod put; +pub mod get; +pub mod delete; +pub mod post; +pub mod put;