Hermes is an open-source E-Mail tracking solution that is written in Go. It tracks emails using a tracking pixel.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package tests
|
|
|
|
import (
|
|
"github.com/revel/revel/testing"
|
|
)
|
|
|
|
type AppTest struct {
|
|
testing.TestSuite
|
|
}
|
|
|
|
func (t *AppTest) Before() {
|
|
println("Set up")
|
|
}
|
|
|
|
func (t *AppTest) TestThatIndexPageWorks() {
|
|
t.Get("/")
|
|
t.AssertOk()
|
|
t.AssertContentType("text/html; charset=utf-8")
|
|
}
|
|
|
|
func (t *AppTest) After() {
|
|
println("Tear down")
|
|
}
|