ordering of the tests for tables data

This commit is contained in:
filipriec
2025-06-25 10:34:58 +02:00
parent 5c23f61a10
commit dc99131794
21 changed files with 18 additions and 4 deletions

View File

@@ -0,0 +1,3 @@
// tests/tables_data/delete/mod.rs
pub mod delete_table_data_test;

View File

@@ -0,0 +1,3 @@
// tests/tables_data/get/mod.rs
pub mod get_table_data_test;

View File

@@ -1,7 +1,4 @@
// tests/tables_data/mod.rs
// pub mod post_table_data_test;
// pub mod put_table_data_test;
// pub mod delete_table_data_test;
pub mod get_table_data_test;
// pub mod get_table_data_count_test;
// pub mod get_table_data_by_position_test;

View File

@@ -1,2 +1,7 @@
// tests/tables_data/mod.rs
pub mod handlers;
pub mod get;
pub mod delete;
pub mod post;
pub mod put;

View File

@@ -0,0 +1,3 @@
// tests/tables_data/post/mod.rs
pub mod post_table_data_test;

View File

@@ -0,0 +1,3 @@
// tests/tables_data/put/mod.rs
pub mod put_table_data_test;