We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 528842c commit 4fcf0dbCopy full SHA for 4fcf0db
src/bors/handlers/help.rs
@@ -28,7 +28,7 @@ mod tests {
28
use crate::tests::mocks::run_test;
29
30
#[sqlx::test]
31
- async fn test_help(pool: sqlx::PgPool) {
+ async fn help_command(pool: sqlx::PgPool) {
32
run_test(pool, |mut tester| async {
33
tester.post_comment("@bors help").await;
34
assert_eq!(tester.get_comment().await, HELP_MESSAGE);
src/bors/handlers/ping.rs
@@ -20,7 +20,7 @@ mod tests {
20
21
22
23
- async fn test_ping(pool: sqlx::PgPool) {
+ async fn ping_command(pool: sqlx::PgPool) {
24
25
tester.post_comment("@bors ping").await;
26
assert_eq!(tester.get_comment().await, "Pong 🏓!");
0 commit comments