コード例 #1
0
ファイル: main_test.go プロジェクト: arschles/goprox
func TestCreateTplCtx(t *testing.T) {
	tplDir := "rootfs/templates"
	ctx := createTplCtx(tplDir, funcs)
	tpl, err := ctx.Prepare(tpl.NewFiles("index.html"))
	assert.NoErr(t, err)
	assert.NotNil(t, tpl, "returned template")
}
コード例 #2
0
ファイル: simple_test.go プロジェクト: topscore/sup
func TestNil(t *testing.T) {
	assert.Nil(t, nil, "nil")
	assert.NotNil(t, "abc", "string")
}