ordering of the tests for tables data
This commit is contained in:
3
server/tests/tables_data/delete/mod.rs
Normal file
3
server/tests/tables_data/delete/mod.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
// tests/tables_data/delete/mod.rs
|
||||
|
||||
pub mod delete_table_data_test;
|
||||
3
server/tests/tables_data/get/mod.rs
Normal file
3
server/tests/tables_data/get/mod.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
// tests/tables_data/get/mod.rs
|
||||
|
||||
pub mod get_table_data_test;
|
||||
@@ -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;
|
||||
|
||||
@@ -1,2 +1,7 @@
|
||||
// tests/tables_data/mod.rs
|
||||
|
||||
pub mod handlers;
|
||||
pub mod get;
|
||||
pub mod delete;
|
||||
pub mod post;
|
||||
pub mod put;
|
||||
|
||||
3
server/tests/tables_data/post/mod.rs
Normal file
3
server/tests/tables_data/post/mod.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
// tests/tables_data/post/mod.rs
|
||||
|
||||
pub mod post_table_data_test;
|
||||
3
server/tests/tables_data/put/mod.rs
Normal file
3
server/tests/tables_data/put/mod.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
// tests/tables_data/put/mod.rs
|
||||
|
||||
pub mod put_table_data_test;
|
||||
Reference in New Issue
Block a user