tests: Convert from testify to quicktest

This commit is contained in:
Bjørn Erik Pedersen
2019-08-10 21:05:17 +02:00
parent 6027ee1108
commit 9e57182705
195 changed files with 3919 additions and 3693 deletions

View File

@@ -16,7 +16,7 @@ package hugolib
import (
"testing"
"github.com/stretchr/testify/require"
qt "github.com/frankban/quicktest"
)
// Just some simple test of the embedded templates to avoid
@@ -25,8 +25,8 @@ import (
func _TestEmbeddedTemplates(t *testing.T) {
t.Parallel()
assert := require.New(t)
assert.True(true)
c := qt.New(t)
c.Assert(true, qt.Equals, true)
home := []string{"index.html", `
GA: