Skip to content

Commit cfdba5b

Browse files
committed
Rename unit test modules to tests
1 parent a1e4a78 commit cfdba5b

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/auth_message_parser.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ impl AuthMessageParser {
3939
}
4040

4141
#[cfg(test)]
42-
#[path = "./auth_message_parser.test.rs"]
43-
mod test;
42+
#[path = "./auth_message_parser_tests.rs"]
43+
mod tests;

src/auth_monitor.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,5 @@ impl AuthMonitor {
7474
}
7575

7676
#[cfg(test)]
77-
#[path = "./auth_monitor.test.rs"]
78-
mod test;
77+
#[path = "./auth_monitor_tests.rs"]
78+
mod tests;

src/auth_monitor_params.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,5 +116,5 @@ impl Display for AuthMonitorParams {
116116
}
117117

118118
#[cfg(test)]
119-
#[path = "./auth_monitor_params.test.rs"]
120-
mod test;
119+
#[path = "./auth_monitor_params_tests.rs"]
120+
mod tests;

src/file_path.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ impl FilePath {
5555
}
5656

5757
#[cfg(test)]
58-
#[path = "./file_path.test.rs"]
59-
mod test;
58+
#[path = "./file_path_tests.rs"]
59+
mod tests;

0 commit comments

Comments
 (0)