summaryrefslogtreecommitdiffstats
path: root/common/hreflect
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-08-10 21:05:17 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-08-12 13:26:32 +0200
commit9e571827055dedb46b78c5db3d17d6913f14870b (patch)
treef5f0108afe0c9385ff6dc27664943d9f719f57ad /common/hreflect
parent6027ee11082d0b9d72de1d4d1980a702be294ad2 (diff)
tests: Convert from testify to quicktest
Diffstat (limited to 'common/hreflect')
-rw-r--r--common/hreflect/helpers_test.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/common/hreflect/helpers_test.go b/common/hreflect/helpers_test.go
index 3c9179394..480ccb27a 100644
--- a/common/hreflect/helpers_test.go
+++ b/common/hreflect/helpers_test.go
@@ -18,16 +18,16 @@ import (
"testing"
"time"
- "github.com/stretchr/testify/require"
+ qt "github.com/frankban/quicktest"
)
func TestIsTruthful(t *testing.T) {
- assert := require.New(t)
+ c := qt.New(t)
- assert.True(IsTruthful(true))
- assert.False(IsTruthful(false))
- assert.True(IsTruthful(time.Now()))
- assert.False(IsTruthful(time.Time{}))
+ c.Assert(IsTruthful(true), qt.Equals, true)
+ c.Assert(IsTruthful(false), qt.Equals, false)
+ c.Assert(IsTruthful(time.Now()), qt.Equals, true)
+ c.Assert(IsTruthful(time.Time{}), qt.Equals, false)
}
func BenchmarkIsTruthFul(b *testing.B) {