Simplify some integration tests
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 10 Feb 2022 18:49:20 +0000 (19:49 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 10 Feb 2022 19:43:19 +0000 (20:43 +0100)
resources/resource_transformers/babel/integration_test.go
resources/resource_transformers/templates/integration_test.go
resources/resource_transformers/tocss/dartsass/integration_test.go
tpl/openapi/openapi3/integration_test.go

index 3fe3c17b1b11c82c438970f80c2a2d2df58a236d..164e7fd40beae07142d236c8642bee8890a5768e 100644 (file)
@@ -16,7 +16,6 @@ package babel_test
 import (
        "testing"
 
-       qt "github.com/frankban/quicktest"
        jww "github.com/spf13/jwalterweatherman"
 
        "github.com/gohugoio/hugo/htesting"
@@ -28,8 +27,6 @@ func TestTransformBabel(t *testing.T) {
                t.Skip("Skip long running test when running locally")
        }
 
-       c := qt.New(t)
-
        files := `
 -- assets/js/main.js --
 /* A Car */
@@ -81,7 +78,7 @@ Transpiled3: {{ $transpiled.Permalink }}
 
        b := hugolib.NewIntegrationTestBuilder(
                hugolib.IntegrationTestConfig{
-                       T:               c,
+                       T:               t,
                        TxtarString:     files,
                        NeedsOsFS:       true,
                        NeedsNpmInstall: true,
index 685a9ba30bd214f50a693612b346068ff4d0549a..4eaac8e2777dfc50a0434ab3e3cdfb0795299c35 100644 (file)
@@ -16,13 +16,11 @@ package templates_test
 import (
        "testing"
 
-       qt "github.com/frankban/quicktest"
-
        "github.com/gohugoio/hugo/hugolib"
 )
 
 func TestExecuteAsTemplateMultipleLanguages(t *testing.T) {
-       c := qt.New(t)
+       t.Parallel()
 
        files := `
 -- config.toml --
@@ -63,7 +61,7 @@ LangURL: {{ relLangURL "foo" }}
 
        b := hugolib.NewIntegrationTestBuilder(
                hugolib.IntegrationTestConfig{
-                       T:           c,
+                       T:           t,
                        TxtarString: files,
                }).Build()
 
index c1616f6842184333bfbfb596f95b57f0d38a9da5..9434b1d5233bfe041abcf1908d7a8afbbd88caa2 100644 (file)
@@ -16,8 +16,6 @@ package dartsass_test
 import (
        "testing"
 
-       qt "github.com/frankban/quicktest"
-
        "github.com/gohugoio/hugo/hugolib"
        "github.com/gohugoio/hugo/resources/resource_transformers/tocss/dartsass"
 )
@@ -27,8 +25,6 @@ func TestTransformIncludePaths(t *testing.T) {
                t.Skip()
        }
 
-       c := qt.New(t)
-
        files := `
 -- assets/scss/main.scss --
 @import "moo";
@@ -47,7 +43,7 @@ T1: {{ $r.Content }}
 
        b := hugolib.NewIntegrationTestBuilder(
                hugolib.IntegrationTestConfig{
-                       T:           c,
+                       T:           t,
                        TxtarString: files,
                        NeedsOsFS:   true,
                }).Build()
@@ -59,7 +55,6 @@ func TestTransformImportRegularCSS(t *testing.T) {
        if !dartsass.Supports() {
                t.Skip()
        }
-       c := qt.New(t)
 
        files := `
 -- assets/scss/_moo.scss --
@@ -88,7 +83,7 @@ T1: {{ $r.Content | safeHTML }}
 
        b := hugolib.NewIntegrationTestBuilder(
                hugolib.IntegrationTestConfig{
-                       T:           c,
+                       T:           t,
                        TxtarString: files,
                        NeedsOsFS:   true,
                },
@@ -114,8 +109,6 @@ func TestTransformThemeOverrides(t *testing.T) {
                t.Skip()
        }
 
-       c := qt.New(t)
-
        files := `
 -- assets/scss/components/_boo.scss --
 $boolor: green;
@@ -163,7 +156,7 @@ zoo {
 
        b := hugolib.NewIntegrationTestBuilder(
                hugolib.IntegrationTestConfig{
-                       T:           c,
+                       T:           t,
                        TxtarString: files,
                        NeedsOsFS:   true,
                },
index 2b0730154c3d5cbc552eb06c1cc6cc12fa68f0ab..d3be0eda94b2bc45f0a96490b6dd1c78d581402e 100644 (file)
@@ -18,12 +18,10 @@ import (
        "testing"
 
        "github.com/gohugoio/hugo/hugolib"
-
-       qt "github.com/frankban/quicktest"
 )
 
 func TestUnmarshal(t *testing.T) {
-       c := qt.New(t)
+       t.Parallel()
 
        files := `
 -- assets/api/myapi.yaml --
@@ -60,7 +58,7 @@ API: {{ $api.Info.Title | safeHTML }}
 
        b := hugolib.NewIntegrationTestBuilder(
                hugolib.IntegrationTestConfig{
-                       T:           c,
+                       T:           t,
                        Running:     true,
                        TxtarString: files,
                },