1、新接textverified

This commit is contained in:
2025-08-23 16:38:04 +08:00
parent 6c95e6fb04
commit 82d5acc873
45 changed files with 3154 additions and 461 deletions

View File

@ -25,3 +25,13 @@ func TestSmsRenew(t *testing.T) {
t.Error(err)
}
}
func TestSmsPriceJob(t *testing.T) {
initSetting()
config.ExtConfig.DaisysmsUrl = "https://daisysms.com/stubs/handler_api.php"
job := SmsPriceJob{}
if err := job.Exec(nil); err != nil {
t.Error(err)
}
}