12 lines
153 B
Go
12 lines
153 B
Go
|
package email
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/smartystreets/goconvey/convey"
|
||
|
)
|
||
|
|
||
|
func Test_Temp(t *testing.T) {
|
||
|
Convey("temp test", t, func() {})
|
||
|
}
|