mirror of
https://github.com/kevin-DL/m3o-go.git
synced 2026-01-11 18:44:26 +00:00
24 lines
298 B
Go
24 lines
298 B
Go
package handler
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/m3o/m3o-go/sms"
|
|
"github.com/m3o/m3o-go/store/keyvalue"
|
|
)
|
|
|
|
func TestHandler(t *testing.T) {
|
|
h := OTP{
|
|
SMS: sms.NewMock(),
|
|
Store: keyvalue.NewMock(),
|
|
}
|
|
|
|
t.Run("Send", func(t *testing.T) {
|
|
|
|
})
|
|
|
|
t.Run("Verify", func(t *testing.T) {
|
|
|
|
})
|
|
}
|